Skip to content

Renamed test to tests #95

Renamed test to tests

Renamed test to tests #95

Workflow file for this run

name: 'test'
on:
push:
jobs:
test:
strategy:
matrix:
os: ['ubuntu']
pyver: [3.8, 3.9, 3.10, 3.11, 3.12]
runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} | ${{ matrix.pyver }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python ${{ matrix.pyver }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.pyver }}
- name: Install dependencies
run: pip install pytest
- name: Run tests
run: make test