Improve background garbage prs and branches collection in unit tests when concurrent tests are run #136
Workflow file for this run
This file contains 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: "CI Run" | |
on: | |
pull_request: | |
branches: | |
- main | |
- grok/*/* | |
push: | |
branches: | |
- main | |
env: | |
GIT_GROK_TEST_GH_TOKEN: ${{ secrets.GIT_GROK_TEST_GH_TOKEN }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.11"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Test | |
run: bash tests/run.sh |