Skip to content

Merge pull request #43 from alphagov/ACW-70/similarity-distance #117

Merge pull request #43 from alphagov/ACW-70/similarity-distance

Merge pull request #43 from alphagov/ACW-70/similarity-distance #117

Workflow file for this run

name: CI
on:
workflow_dispatch: {}
push:
branches:
- main
paths-ignore:
- ".git**"
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Run pre-commit checks
uses: pre-commit/action@v3.0.1
test:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install uv
- name: Test with pytest
run: |
uv run pytest