Skip to content

chore: cleanup

chore: cleanup #23

Workflow file for this run

name: Run tests

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

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: test-p36-p37, test-p38-latest
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test-p36-p37:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.6, 3.7]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: pip install tox tox-gh-actions
- name: Test with tox
run: tox
test-p38-latest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: requirements.txt
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: Install dependencies
run: |
pip install tox tox-gh-actions
- name: Test with tox
run: tox