Skip to content

Merge remote-tracking branch 'origin/master' #301

Merge remote-tracking branch 'origin/master'

Merge remote-tracking branch 'origin/master' #301

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
concurrency:
group: ci-${{ github.head_ref }}
cancel-in-progress: true
env:
PYTHONUNBUFFERED: 1
FORCE_COLOR: 1 # colored output by pytest etc.
CLICOLOR_FORCE: 1 # colored output by ruff
permissions:
contents: read
jobs:
# TODO: disable docs build until decision is made
# docs:
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python 3.11
# uses: actions/setup-python@v4
# with:
# python-version: '3.11'
# - name: Cache python dependencies
# uses: actions/cache@v3
# with:
# path: ~/.cache/pip
# key: pip-docs-${{ hashFiles('pyproject.toml') }}
# restore-keys: |
# pip-docs-
# - name: Install python dependencies
# run: |
# python -m pip install .[docs]
# python -m pip show fuji
# - name: Build documentation
# env:
# READTHEDOCS: 'True'
# run: |
# # TODO: add W flag back after fixing warnings
# SPHINXOPTS='-n' make -C docs html
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Cache python dependencies
uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.cache/pre-commit
key: lint-${{ hashFiles('.pre-commit-config.yaml', 'pyproject.toml') }}
restore-keys: |
lint-
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install hatch
- run: hatch run lint
tests:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: pip
- name: Install python dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade hatch
- name: Run test suite with coverage
run: hatch run cov-ci
- name: Upload coverage reports
uses: actions/upload-artifact@v3
with:
name: coverage
retention-days: 1
path: |
junit.xml
pytest-coverage.txt
coverage:
runs-on: ubuntu-22.04
needs: tests
permissions:
contents: read
pull-requests: write
steps:
- name: Download coverage reports
uses: actions/download-artifact@v3
with:
name: coverage
# Ref: https://github.com/MishaKav/pytest-coverage-comment
- name: Add coverage comment
uses: MishaKav/[email protected]
with:
title: Coverage
pytest-coverage-path: pytest-coverage.txt
junitxml-path: junit.xml