Skip to content

add first test job

add first test job #1

Workflow file for this run

name: Test job
on: push
jobs:
my_test_job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
pip install black
black --check .
pip install pytest
pytest test.py