Skip to content

Fix issue in CI actions and a bit of cleanup (#25) #106

Fix issue in CI actions and a bit of cleanup (#25)

Fix issue in CI actions and a bit of cleanup (#25) #106

Workflow file for this run

name: Rust
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
name: Check formatting
runs-on: ubuntu-latest
steps:
- name: Checkout reposistory
uses: actions/checkout@main
- name: Run cargo fmt
run: cargo fmt --all -- --check
clippy:
name: Check clippy
runs-on: ubuntu-latest
steps:
- name: Checkout reposistory
uses: actions/checkout@main
- name: Run cargo clippy
run: |
cargo clippy --version
cargo clippy --all --all-targets --all-features -- -D warnings
macos-check:
runs-on: macos-latest
steps:
- uses: actions/checkout@main
- name: Test
run: cargo test
ubuntu-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Test
run: cargo test
windows-check:
runs-on: windows-latest
steps:
- uses: actions/checkout@main
- name: Test
run: cargo test