Skip to content

Update README

Update README #5

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Pytest
run: pip install pytest
- name: Build project
run: make
- name: Run tests
working-directory: src/test
run: pytest