Skip to content

update ci

update ci #217

Workflow file for this run

name: Runs tests

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

View workflow run for this annotation

GitHub Actions / .github/workflows/runtests.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: runtests
on:
pull_request:
push:
branches:
- main
jobs:
runtests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run tests
run: |
tox