subz rockin the software report #4
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: test index | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install reqs | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade setuptools wheel | |
pip install pytest validators | |
- name: Run tests | |
run: | | |
pytest -vv | |
if [ $? -ne 0 ]; then | |
exit 1 | |
fi |