Refactor SnapshotList and related components to remove filtering func… #3
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: API Tests | |
| on: | |
| push: | |
| branches: [ main, develop ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Run API Tests with Docker Compose | |
| run: | | |
| docker-compose -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from test-runner | |
| - name: Clean up | |
| if: always() | |
| run: | | |
| docker-compose -f docker-compose.test.yml down -v |