remove queues entirely, they're not really needed #14
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: Regression Guards | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| pull_request: | |
| jobs: | |
| regression-guards: | |
| name: Regression Guards | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run unit tests (non-root packages) | |
| run: go test ./config ./dispatcher ./executor ./models ./resourcemanager ./routes | |
| - name: Run regression guard checks | |
| run: bash .github/scripts/check_regressions.sh |