Skip to content

Commit

Permalink
add rough testing workflow to gha
Browse files Browse the repository at this point in the history
  • Loading branch information
d-v-b committed Feb 28, 2024
1 parent 6ce0ff5 commit 9fa6b61
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Linux Testing

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install dependencies
shell: "bash -l {0}"
run: |
pip install poetry
poetry install
- name: Test
run: |
poetry run pytest

0 comments on commit 9fa6b61

Please sign in to comment.