feat: set up CI tests #2
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: Pull Request Testing | ||
on: | ||
pull_request: | ||
branches: [main] | ||
jobs: | ||
setup: | ||
steps: | ||
Check failure on line 9 in .github/workflows/pull_request.yml GitHub Actions / Pull Request TestingInvalid workflow file
|
||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
cache: 'pip' | ||
- run: pip install -r requirements.txt | ||
test: | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: pytest -o log_cli=true -o -vv |