Skip to content

test ci 5

test ci 5 #59

Workflow file for this run

name: Tox
on:
- push
- pull_request
- release
- workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version}}
- name: Install pandoc
run: sudo apt-get install pandoc
- name: Install tox
run: pip install tox tox-gh-actions
- name: Test with tox
run: tox -r