Skip to content

Merge pull request #108 from MohammadKanaan/dependabot/github_actions… #32

Merge pull request #108 from MohammadKanaan/dependabot/github_actions…

Merge pull request #108 from MohammadKanaan/dependabot/github_actions… #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Set up uv
uses: astral-sh/setup-uv@v5
- name: Install dependencies
run: uv sync --dev
- name: Lint
run: uv run ruff check
- name: Typecheck
run: uv run mypy nomnom
- name: Test
run: uv run pytest
- name: Build distributions
run: uv build
- name: Check distributions
run: uvx twine check dist/*