Clean test.yml

This commit is contained in:
lepapareil 2022-06-08 13:59:02 +02:00 committed by GitHub
parent 0a552d7275
commit 8d92f4fb45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,51 +6,6 @@ env:
CARGO_TERM_COLOR: always
jobs:
rustfmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: rustfmt
- name: Check formatting
run: |
cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
components: clippy
- name: Run Clippy
run: |
cargo clippy -- -D warnings
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Check Shell Scripts
run: |
find -name *.sh | xargs shellcheck
- name: Check Python Scripts
run: |
pip3 install black
black --check .
benchsuite:
runs-on: ubuntu-latest
steps: