Skip to content

papis-html: fixup and modernize code #5

papis-html: fixup and modernize code

papis-html: fixup and modernize code #5

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
# 17:00 on Friday (UTC)
- cron: "00 17 * * 5"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.12']
fail-fast: False
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: make ci-install
- name: Run tests, mypy and linting
run: make ci-test
shell: bash