Skip to content

chore: update pre-commit hooks (#132) #360

chore: update pre-commit hooks (#132)

chore: update pre-commit hooks (#132) #360

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
release:
types:
- published
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
jobs:
pre-commit:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: pre-commit/[email protected]
build:
name: Build and test with Python ${{ matrix.python-version }} on ${{
matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies on Ubuntu
if: matrix.runs-on == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt install libpango1.0-dev ffmpeg
- name: Install dependencies on macOS
if: matrix.runs-on == 'macos-latest'
run: |
brew install ffmpeg pkg-config
- name: Install package
run: python -m pip install .[test]
- name: Test package
run: python -m pytest -ra --cov=riemapp
- name: Upload coverage report
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install ubuntu dependencies
run: |
sudo apt-get update
sudo apt install libpango1.0-dev ffmpeg
- name: Install pythonic dependencies and build docs
run: |
python -m pip install .[dev,docs]
mkdocs build
dist:
name: Distribution build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build sdist and wheel
run: pipx run build
- uses: actions/upload-artifact@v4
with:
path: dist
- name: Check products
run: pipx run twine check dist/*
- uses: pypa/[email protected]
if: github.event_name == 'release' && github.event.action == 'published'
with:
password: ${{ secrets.pypi_password }}