Skip to content

test: get project

test: get project #2

Workflow file for this run

# This workflow will run pytest in the repository directory

Check failure on line 1 in .github/workflows/pytest.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pytest.yml

Invalid workflow file

(Line: 29, Col: 13): Unexpected value ''
# This runs on pull request or on any push to the repository
# based on https://www.youtube.com/watch?v=uFcXrWT4f80
name: Run tests
on:
pull_request:
branches: ['master']
push:
branches: ['master']
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v5
- name: setup-python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- run: pip install -r requirements.txt
- run: pip install pytest
- shell: bash
env:
# TEST_SECRET: ${{ secrets.TEST_SECRET }}
run: |
pytest