Skip to content

Update README.md

Update README.md #63

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Tests
# Controls when the action will run.
on:
push:
branches:
- "master"
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nox
- name: Test
run: nox -s tests -- -m "not slow"