Skip to content

chore: Update example #4

chore: Update example

chore: Update example #4

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
paths:
- "**.py"
- .github/workflows/test.yml
jobs:
test:
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@v3
with:
python-version: ${{ matrix.python-version }}
- name: Running the tests
run: |
python3 -m unittest discover