Skip to content

Commit

Permalink
chore(ci): move to actions/checkout@v3
Browse files Browse the repository at this point in the history
  • Loading branch information
loyd committed May 14, 2023
1 parent f27effc commit f9f6716
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: cargo build --all-targets --all-features

rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add rustfmt
- uses: actions/checkout@v3
- run: cargo fmt --version
- run: cargo fmt -- --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup component add clippy
- uses: actions/checkout@v3
- run: cargo clippy --version
- run: cargo clippy
- run: cargo clippy --all-targets --no-default-features
Expand All @@ -39,7 +37,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: cargo test
- run: cargo test --no-default-features
- run: cargo test --features uuid,time
Expand Down

0 comments on commit f9f6716

Please sign in to comment.