Skip to content

ci(github): add Poetry install step #4

ci(github): add Poetry install step

ci(github): add Poetry install step #4

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
uses: snok/install-poetry@v1
with:
version: "1.6.1"
- name: Install dependencies
run: poetry install
- name: Run tests
run: make test