Skip to content

Commit

Permalink
chore(ci): actualize
Browse files Browse the repository at this point in the history
  • Loading branch information
loyd committed May 30, 2024
1 parent ef1838b commit cb2e4d7
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,32 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: cargo build --all-targets --all-features

rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: rustup component add rustfmt
- run: cargo fmt --version
- run: cargo fmt -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: rustup component add clippy
- run: cargo clippy --version
- run: cargo clippy --all-targets --all-features

test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: cargo test --all-features
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: cargo test

0 comments on commit cb2e4d7

Please sign in to comment.