Skip to content

pytoml

pytoml #4

Workflow file for this run

name: Tests
on:
push:
branches: [master, pypi-release]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.11' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[tests]
- name: Run pytest
run: pytest