Auto-detect GitHub owner and repo from git remote #33
Workflow file for this run
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 | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| chmod +x tests/setup.sh | |
| ./tests/setup.sh | |
| - name: Run tests | |
| run: ./tests/libs/bats/bin/bats tests/test_continuous_claude.bats |