Skip to content

Commit

Permalink
add nox tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorax66 committed Feb 11, 2025
1 parent 3260ba2 commit c7c8cc0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/nox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run nox tests

on: [push]

jobs:
tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install uv and nox
run: |
pip install --upgrade pip
pip install uv
uv tool install nox
- name: Lint
run: |
uvx nox -s lint
- name: Check typing
run: |
uvx nox -s typing
- name: extensive-test
run: |
uvx nox -s extensive-test

0 comments on commit c7c8cc0

Please sign in to comment.