Skip to content

Add pytest workflow

Add pytest workflow #2

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Run Unittests
# Controls when the action will run.
on:
push:
paths: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pytest:
name: Pytest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install pytest and poetry
run: pip install pytest poetry
- name: Install dependencies
run: poetry install
working-directory: ./service/src/structure_comparer
- name: foo
run: python --version
- name: foo
run: pip list
- name: Run tests
run: pytest