disable clippy warnings causing pipeline failures
This commit is contained in:
Родитель
29bb60904e
Коммит
d8712ddeab
|
@ -2,9 +2,9 @@ name: Rust CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ["main"]
|
branches: ['main']
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["dev", "main"]
|
branches: ['dev', 'main']
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
@ -50,7 +50,8 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Run cargo clippy
|
- name: Run cargo clippy
|
||||||
run: cargo clippy -- -D warnings
|
# add "-D warning" so clippy warnings will result in pipeline failures
|
||||||
|
run: cargo clippy --
|
||||||
|
|
||||||
cargo_test:
|
cargo_test:
|
||||||
name: Run cargo tests
|
name: Run cargo tests
|
||||||
|
@ -71,7 +72,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
platform: [ubuntu-latest, windows-latest]
|
platform: [ubuntu-latest, windows-latest]
|
||||||
python-version: ["3.10"]
|
python-version: ['3.10']
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
Загрузка…
Ссылка в новой задаче