Skip to content

✨ Add py.typed

✨ Add py.typed #49

Workflow file for this run

name: Test & Track
on:
push:
branches:
- main
paths-ignore:
- '.github/workflows/build.yml'
- '.github/workflows/auto-merge.yml'
pull_request:
jobs:
test:
strategy:
matrix:
py_ver: ['3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Ensure Python Runtime
with:
python-version: ${{matrix.py_ver}}
architecture: 'x64'
- name: Ensure PDM
run: |
python3 -m pip install pdm
- name: Install Package
run: |
pdm sync -G:all --no-self
- name: Install self
run: |
export TARINA_NO_EXTENSIONS=1 && pdm install
- name: Test & Report
run: |
pdm run test
test_with_extensions:
strategy:
matrix:
py_ver: ['3.9', '3.10', '3.11', '3.12', '3.13']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Ensure Python Runtime
with:
python-version: ${{matrix.py_ver}}
architecture: 'x64'
- name: Ensure PDM
run: |
python3 -m pip install pdm
- name: Install Package
run: |
pdm sync -G:all --no-self
- name: Cythonize
run: |
pdm run make
- name: Install self
run: |
pdm install -v
- name: Test & Report
run: |
pdm run test