chore: update docs #10
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 package" | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: "Checkout ${{ github.repository }}" | |
uses: "actions/checkout@v4" | |
- name: "Install poetry using pipx" | |
run: | | |
pipx install poetry==1.8.3 | |
poetry config virtualenvs.in-project true | |
- name: "Set up Python ${{ matrix.python-version }}" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "${{ matrix.python-version }}" | |
cache: "poetry" | |
- name: "Install dependencies" | |
run: "poetry install" | |
- name: "Run Ruff checks" | |
run: | | |
poetry run ruff check --select I | |
poetry run ruff format --check | |
- name: "Test with pytest" | |
run: "poetry run pytest --cov=time2relax" |