Skip to content

chore: update __version__ to 0.1.1 #4

chore: update __version__ to 0.1.1

chore: update __version__ to 0.1.1 #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --all-extras
- name: Run tests
run: uv run pytest tests/ -v
- name: Lint with ruff
run: |
uv run ruff check src/
uv run ruff format --check src/
- name: Test CLI
run: |
uv run gurkerlcli --version
uv run gurkerlcli --help