Release v2.4.0 #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
# Enable running CI from the GitHub GUI (see https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch) | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: Tests | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nox | |
uses: wntrblm/nox@2024.03.02 | |
with: | |
python-versions: "3.9, 3.10" | |
- name: Run tests | |
run: nox -s tests --verbose | |