Skip to content

test: only run test on push #5

test: only run test on push

test: only run test on push #5

Workflow file for this run

name: pytest
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: pip install .
- name: Run pytest
run: pytest