This repository was archived by the owner on Oct 21, 2025. It is now read-only.
chore(deps): bump stablesats proto #7538
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 test" | |
| on: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| name: execute via bats | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 25 | |
| steps: | |
| - name: Maximize build space | |
| uses: easimon/maximize-build-space@master | |
| with: | |
| root-reserve-mb: 15360 | |
| temp-reserve-mb: 12288 | |
| - uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@v14 | |
| - name: Run the Magic Nix Cache | |
| uses: DeterminateSystems/magic-nix-cache-action@v8 | |
| - name: Run bats tests | |
| run: | | |
| nix develop -c ./bats/ci_run.sh | |
| - name: Rename Tilt log | |
| if: always() | |
| run: mv bats/.e2e-tilt.log bats/e2e-tilt.log | |
| - name: Upload Tilt log | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Tilt log | |
| path: bats/e2e-tilt.log |