Initial migration to poetry, python12, removes pip-compile, updates m… #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push] | |
jobs: | |
build: | |
name: build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version-file: '.python-version' # Read python version from a file | |
- name: Set up poetry | |
uses: Gr1N/setup-poetry@v9 | |
- name: Runs tests and static analysis | |
shell: bash | |
run: make test |