Skip to content

Commit

Permalink
CI: Add GitHub Actions configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Apr 24, 2024
1 parent 3e81eab commit 09d918e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test

on:
- push
- pull_request

jobs:
unittests:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.10", "3.12"]
runs-on: ubuntu-latest
container:
image: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Run unit tests
run: python -m unittest discover

0 comments on commit 09d918e

Please sign in to comment.