chore(deps): update google/cloud-sdk:latest docker digest to c6c6bec #156
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: test check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - uses: jdx/mise-action@13abe502c30c1559a5c37dff303831bab82c9402 # v2 | |
| with: | |
| cache: true | |
| - name: Dependency cache | |
| id: cache | |
| uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4 | |
| with: | |
| path: .venv | |
| key: ${{ runner.os }}-test-${{ hashFiles('**/pyproject.toml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-test-${{ hashFiles('**/pyproject.toml') }} | |
| - name: run docker-compose | |
| run: | | |
| docker compose up -d | |
| sleep 10s | |
| - name: run test | |
| run: |- | |
| just test |