Skip to content

White noise

White noise #244

Workflow file for this run

name: unit-tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
# set up our environment
-
name: Install Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
-
name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
# run the library's tests
-
name: run tests
env:
pyver: ${{ matrix.python-version }}
run: tox -e py${pyver//./}