Files
google-apis-rs/.github/workflows/rust.yml
Sebastian Thiel d9fea508ea enable clippy and make it to fail CI on warnings.
This should improve overall code quality and reduce guess work
I typically do, being used to running `clippy` on my other projects.
2022-10-20 11:03:56 +08:00

34 lines
772 B
YAML

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Run clippy
run: |
cargo clippy -- -D warnings
build-and-test:
runs-on: ubuntu-latest
env:
TRAVIS: true # emulate CI, some code depends on it to do less work
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: |
source ~/.profile
make test-gen
make gen-all-cli cargo-api ARGS=test
make cargo-api ARGS='check --no-default-features'
make cargo-api ARGS=doc
make docs-all
cargo test