chore(deps): update actions/checkout digest to 064fe7f #76
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: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@064fe7f3312418007dea2b49a19844a9ee378f49 | |
| - name: Setup tools (mise) | |
| uses: jdx/mise-action@5ff8b6c87089a23d44f61309fd05300c2f616b73 | |
| with: | |
| cache: true | |
| experimental: true | |
| - name: Restore Rust cache | |
| uses: Swatinem/rust-cache@5e4a76743357a1c3c57315bc1896d2c7f89d6861 | |
| - name: Run build | |
| id: build | |
| run: mise build | |
| - name: Run tests | |
| id: tests | |
| run: mise test | |
| - name: Report CI result in PR | |
| if: always() | |
| uses: actions/github-script@450193c5abd4cdb17ba9f3ffcfe8f635c4bb6c2a | |
| with: | |
| script: | | |
| const report = require('./.github/scripts/report-ci.js'); | |
| await report({ github, context, process }); | |
| env: | |
| BUILD_OUTCOME: ${{ steps.build.outcome }} | |
| TEST_OUTCOME: ${{ steps.tests.outcome }} |