Skip to content

CI: Update used actions and Python versions #228

CI: Update used actions and Python versions

CI: Update used actions and Python versions #228

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Cache Poetry
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry
key: poetry-cache-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Code checks
run: |
poetry run pre-commit run --all-files --show-diff-on-failure
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache Poetry
uses: actions/cache@v4
with:
path: |
~/.cache/pypoetry
~/Library/Caches/pypoetry
C:\Users\*\AppData\Local\pypoetry\Cache
key: poetry-cache-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
pip install poetry
poetry config installer.parallel false
poetry install
- name: Test with pytest
run: |
poetry run pytest -n auto
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Cache Poetry
uses: actions/cache@v2
with:
path: |
~/.cache/pypoetry
key: poetry-cache-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run coverage tests
run: |
poetry run coverage run -m pytest
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_SERVICE_NAME: github
run: |
poetry run coveralls