Skip to content

fix: restore PEP 621 license table for py38 build backend #39

fix: restore PEP 621 license table for py38 build backend

fix: restore PEP 621 license table for py38 build backend #39

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ".[test]"
- name: Lint with ruff
run: |
python -m ruff check remode tests
- name: Check types with mypy
run: |
python -m mypy remode/remode.py
- name: Run tests with pytest
run: |
python -m pytest -q