Skip to content

✨ Colorize output #26

✨ Colorize output

✨ Colorize output #26

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install hatch
run: pip install hatch
- uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python-version }}"
- name: Install hatch
run: pip install hatch
- name: Run tests
run: hatch run test