Merge pull request #6 from dtolnay/checkout

Update example workflow in readme to actions/checkout@v3
This commit is contained in:
David Tolnay 2022-04-24 18:32:51 -07:00 committed by GitHub
commit 89849aa1e8
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ jobs:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
```