Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Poetry & Copier Update #29

Poetry & Copier Update

Poetry & Copier Update #29

Workflow file for this run

---
name: CI Pipeline
"on":
push:
branches: [main]
pull_request:
branches: [main]
paths:
- shoal/**
- tests/**
- poetry.lock
- pyproject.toml
env:
COLUMNS: 120
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
- name: Run static linters
run: poetry run calcipy-lint lint.check
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
- name: Run test
run: poetry run calcipy-test test.pytest
typecheck:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
- name: Run typecheck
run: poetry run calcipy-types types.mypy
# Based on: https://github.com/jakebailey/pyright-action/issues/10#issuecomment-1455220629
- name: Add Poetry Python to Path
run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v2