Update dependency setuptools to v75.7.0 #1364
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: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
cache: 'poetry' | |
- name: Install Task | |
uses: arduino/setup-task@v1 | |
- name: Install packages | |
run: | | |
task python:install | |
- name: Linting | |
run: | | |
task python:lint | |
- name: Unit tests | |
run: | | |
task python:test-cov | |
env: | |
RUBRICAL_TEST_GITHUB_ACCESS_TOKEN: ${{ secrets.RUBRICAL_TEST_GITHUB_ACCESS_TOKEN }} | |
- name: Doc tests | |
run: task docs:test | |
- uses: codecov/codecov-action@v5 | |
with: | |
files: test_results/cov.xml |