chore(deps): update dependency rust to v1.97.1 #66
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: E2E | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| shellspec: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 90 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up mise | |
| uses: jdx/mise-action@v2 | |
| - name: Run unit tests | |
| run: mise exec -- cargo test | |
| - name: Show Docker tooling | |
| run: docker compose version | |
| - name: Prebuild Docker images | |
| run: docker compose build | |
| - name: Run end-to-end suite | |
| run: mise exec -- shellspec |