Skip to content

Commit

Permalink
Added GitHub CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzery committed Oct 27, 2023
1 parent bbd86ac commit 55d19ab
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will run all unittest suites with Python 3.10
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python unit tests

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Run all unit tests
run: |
python -m unittest discover -s tests

0 comments on commit 55d19ab

Please sign in to comment.