Skip to content

feat(ci): create pipeline to publish package to PyPI on each release #1

feat(ci): create pipeline to publish package to PyPI on each release

feat(ci): create pipeline to publish package to PyPI on each release #1

Workflow file for this run

name: Run Tests
on:
release:
types: [published]
push:
branches:
- main
paths-ignore:
- *.md

Check failure on line 10 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
env:
PROJECT_NAME: typeid-python
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 9
submodules: false
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Sync dependencies (locked)
run: |
uv sync --locked --all-groups
- name: Run tests
run: |
make test
- name: Run linters
run: |
make check-linting