Skip to content

Tests and CI pipeline #1

Tests and CI pipeline

Tests and CI pipeline #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install -r requirements.txt pytest
- name: Test
run: |
python3 -m pytest