Skip to content

makefile and github actions #1

makefile and github actions

makefile and github actions #1

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: get code
uses: actions/checkout@v4
- name: install poetry
run: pipx install poetry
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "poetry"
- name: test
run: |
poetry run make test