Skip to content

VERSION: 2023.8.0

VERSION: 2023.8.0 #47

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.9]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: checkout
uses: actions/checkout@v2
- name: python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: tests
run: |
tox -e py