ci: update actions to use actions/checkout@v3 (#17)
This commit is contained in:
committed by
GitHub
parent
6379e82105
commit
6ae29a25e8
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -10,14 +10,14 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
name: Check
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: cargo check
|
||||
run: cargo check
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
name: Test
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: cargo test
|
||||
run: cargo test
|
||||
# uncomment to enable clippy lints
|
||||
@@ -25,7 +25,7 @@ jobs:
|
||||
# runs-on: ubuntu-latest
|
||||
# name: Lint (clippy)
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
# - uses: actions/checkout@v3
|
||||
# - name: cargo clippy
|
||||
# run: cargo clippy -- -D warnings
|
||||
# uncoment to enable format checking
|
||||
|
||||
Reference in New Issue
Block a user