fix readme #60
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: Python CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
# make depends on uv | |
- name: Install dependencies | |
run: | | |
pip install uv | |
make install | |
- name: Run linter and pytest | |
run: | | |
make check | |
- name: Test & publish code coverage | |
uses: paambaati/codeclimate-action@v9.0.0 | |
if: github.ref_name == 'main' | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: make test-coverage | |
debug: true |