Skip to content

Commit

Permalink
Update checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
spencewenski committed Mar 29, 2024
1 parent 3e757b0 commit b9029c6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: No features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: cargo test --no-fail-fast --no-default-features
- name: Check
Expand All @@ -24,7 +24,7 @@ jobs:
name: Default features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: cargo test --no-fail-fast
- name: Check
Expand All @@ -34,7 +34,7 @@ jobs:
name: All features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: cargo test --no-fail-fast --all-features
- name: Check
Expand All @@ -54,7 +54,7 @@ jobs:
- sidekiq,open-api
- db-sql,open-api
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: cargo test --no-fail-fast --no-default-features --features ${{matrix.features}}
- name: Check
Expand All @@ -64,14 +64,14 @@ jobs:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Clippy
run: cargo clippy -- -D warnings

check_formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Formatting
run: cargo fmt -- --check

0 comments on commit b9029c6

Please sign in to comment.