Skip to content

ci(github): fix python version string #3

ci(github): fix python version string

ci(github): fix python version string #3

Workflow file for this run

name: Check
on: push
jobs:
test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
# - name: Install Poetry
# run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: poetry install
- name: Run tests
run: make test