Skip to content

Version 1.0.1

Version 1.0.1 #116

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.os }} - Python ${{ matrix.python-version }} - Flask ${{ matrix.flask-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.12']
flask-version: ['3']
include:
- os: ubuntu-latest
python-version: '3.8'
flask-version: '3'
- os: ubuntu-latest
python-version: '3.12'
flask-version: '2'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install hatch
run: pip3 install hatch
- name: Run tests
run: hatch run test.py${{ matrix.python-version }}-${{ matrix.flask-version }}:run
- name: Check style
run: hatch run check:run