From 09d918e8223189bf794782fc86782eb66533650e Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Tue, 23 Apr 2024 21:34:29 -0400 Subject: [PATCH] CI: Add GitHub Actions configuration --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..ab57bbf --- /dev/null +++ b/.github/workflows/test.yml @@ -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