Skip to content

Merge commit '8acafa922b64ff7eec07d02e19c721a51532b15f' #21

Merge commit '8acafa922b64ff7eec07d02e19c721a51532b15f'

Merge commit '8acafa922b64ff7eec07d02e19c721a51532b15f' #21

Workflow file for this run

name: Python CI
# Trigger the workflow on pushes and pull requests to the 'main' branch
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
# Run tests on the latest Ubuntu
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code from the repository
- name: Checkout repository
uses: actions/checkout@v3
# Step 2: Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
# Step 3: Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Step 4: Run tests
- name: Run tests
run: pytest