Skip to content

Commit

Permalink
Merge pull request #57 from dtolnay/ci
Browse files Browse the repository at this point in the history
Add coverage of a cargo invocation in CI
  • Loading branch information
dtolnay committed Jan 31, 2023
2 parents 6395c05 + 82765d8 commit c8acf68
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,9 @@ jobs:
run: cmp -s <(echo ${{steps.toolchain.outputs.cachekey}}) <(echo 20220627a831)
shell: bash
- run: rustc --version
- run: cargo init . --bin --name CI
if: matrix.rust == 'nightly' || matrix.rust == 'beta' || matrix.rust == 'stable'
- run: cargo add syn@1
if: matrix.rust == 'nightly' || matrix.rust == 'beta' || matrix.rust == 'stable'
- run: cargo check
if: matrix.rust == 'nightly' || matrix.rust == 'beta' || matrix.rust == 'stable'

0 comments on commit c8acf68

Please sign in to comment.