mirror of
https://github.com/catppuccin/python.git
synced 2026-03-16 00:02:01 +08:00
23 lines
488 B
YAML
23 lines
488 B
YAML
on:
|
|
push:
|
|
paths:
|
|
- '**.py'
|
|
|
|
name: test
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- uses: abatilo/actions-poetry@v3
|
|
- run: poetry install --all-extras
|
|
- run: poetry run pytest --cov catppuccin
|