Skip to content

Commit

Permalink
Merge pull request #14 from eightfilms/improved-ci
Browse files Browse the repository at this point in the history
ci: add fmt and clippy to ci workflow
  • Loading branch information
pinhaocrypto authored Dec 24, 2024
2 parents fc233a0 + 10b62fa commit 6e513e4
Showing 1 changed file with 39 additions and 16 deletions.
55 changes: 39 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,50 @@ env:
CARGO_TERM_COLOR: always

jobs:
build:
test:
runs-on: ubuntu-latest
timeout-minutes: 150 # Consider increasing timeout
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
profile: minimal
toolchain: nightly
override: true
components: clippy
toolchain: $(cat rust-toolchain)
components: rustfmt, clippy

- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --all --verbose
- name: Compile
run: cargo test --no-run

- name: Test
run: cargo test --all --verbose
run: cargo test --all --verbose --no-fail-fast

clippy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: $(cat rust-toolchain)
components: rustfmt, clippy

- name: Run clippy
run: cargo clippy --all-features --all-targets -- -D warnings

cargo-fmt:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@nightly
with:
toolchain: $(cat rust-toolchain)
components: rustfmt, clippy

- name: Run rustfmt
run: cargo fmt --all --check

0 comments on commit 6e513e4

Please sign in to comment.