Skip to content

Relax semantic versioning pattern #10

Relax semantic versioning pattern

Relax semantic versioning pattern #10

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install tox
- name: Run tests
run:
tox -e doctests