Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pitdicker committed Jan 29, 2024
1 parent 366c63a commit dc95da7
Showing 1 changed file with 10 additions and 21 deletions.
31 changes: 10 additions & 21 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,20 @@ on:

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"

jobs:
cargo-test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
lfs: true

- uses: Swatinem/rust-cache@v1

- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test

- name: rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -p generate-api -- --check

- name: clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: -- -D warnings
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test
# Don't check the generated file, it doesn't quite match the style of rustfmt yet.
# - run: cargo fmt --check
- run: cargo fmt -p generate-api --check
- run: cargo clippy
- run: cargo clippy -p generate-api

0 comments on commit dc95da7

Please sign in to comment.