another try

This commit is contained in:
holger krekel
2020-06-17 16:28:38 +02:00
parent 65aec0c965
commit 486c9f6655

View File

@@ -20,12 +20,29 @@ jobs:
profile: minimal
toolchain: 1.43.1
override: true
- run: rustup component add rustfmt
- run: rustup component add rustfmt clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
run_clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.43.1
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
build_and_test:
name: Build and test