chore(deps): bump actions/checkout from 3 to 5 #87
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| checks: | |
| name: Rust checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: davidB/rust-cargo-make@v1 | |
| - uses: actions/checkout@v5 | |
| - name: Run format | |
| run: cargo make format | |
| - name: Run check | |
| run: cargo make check | |
| - name: Run clippy | |
| run: cargo make clippy | |
| - name: Run test | |
| run: cargo make test | |
| - name: Generate code coverage | |
| run: cargo make coverage | |
| - name: Upload to codecov.io | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} |