Skip to content

Merge pull request #4 from caas-team/fix/test-actions-on-every-push #10

Merge pull request #4 from caas-team/fix/test-actions-on-every-push

Merge pull request #4 from caas-team/fix/test-actions-on-every-push #10

Workflow file for this run

name: Python Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run pytest
run: poetry run pytest