Skip to content

MNT-93: Add image tagging script #8

MNT-93: Add image tagging script

MNT-93: Add image tagging script #8

Workflow file for this run

name: Checks
on:
push:
pull_request:
permissions:
contents: read
jobs:
checks:
name: Run checks
runs-on: ubuntu-latest
steps:
- name: Install Cairo on Ubuntu
run: |
sudo apt-get update
sudo apt-get install -y python3-gi python3-gi-cairo gir1.2-gtk-3.0 libraw-dev libcairo2-dev libgirepository1.0-dev gobject-introspection
- name: Check out the repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Setup UV
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install dependencies
shell: bash
run: |
uv sync --locked --all-extras --dev
- name: Run pre-commit hooks
run: |
uv run ty check
uv run pre-commit run