diff --git a/new.github/workflows/unittests.yaml b/new.github/workflows/unittests.yaml new file mode 100644 index 00000000..599e461b --- /dev/null +++ b/new.github/workflows/unittests.yaml @@ -0,0 +1,26 @@ + + + +name: Continuous Integration + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.12.0 + architecture: x64 + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Run Tests + run: python -m pytest