Skip to content

Commit

Permalink
tests: add actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
malmeloo authored Sep 2, 2024
1 parent 51c7448 commit fd78971
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run unit tests

on:
workflow_dispatch:
push:

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install poetry
poetry config virtualenvs.in-project true
poetry install
- uses: wntrblm/[email protected]

- name: Run unit tests
run: nox

0 comments on commit fd78971

Please sign in to comment.