Compare commits

...

7 Commits

Author SHA1 Message Date
holger krekel
3e05015028 remove all mentioning of clippy and checks 2020-06-17 18:53:09 +02:00
holger krekel
6aa0291dfe remove one more 2020-06-17 18:14:05 +02:00
holger krekel
bb9112811a and another one bites 2020-06-17 17:48:43 +02:00
holger krekel
9574c09613 another try 2020-06-17 17:04:49 +02:00
holger krekel
486c9f6655 another try 2020-06-17 16:28:38 +02:00
holger krekel
65aec0c965 try a different way 2020-06-17 16:24:32 +02:00
holger krekel
e0750a04e8 try fix #1623 the wrong warnings 2020-06-17 16:09:07 +02:00

View File

@@ -5,8 +5,6 @@ on:
push:
branches:
- master
- staging
- trying
jobs:
@@ -20,25 +18,12 @@ jobs:
profile: minimal
toolchain: 1.43.1
override: true
- run: rustup component add rustfmt
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
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
@@ -75,12 +60,6 @@ jobs:
path: target
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-build-target-${{ hashFiles('**/Cargo.toml') }}
- name: check
uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --all --bins --examples --tests
- name: tests
uses: actions-rs/cargo@v1
with: