From f85f1eeeec6c2f89c7b9e43f1c2a65da0805a527 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 22 Oct 2024 22:18:33 +0100 Subject: [PATCH] Add CI config --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..530446c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +on: + push: + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: 3.13 + - uses: taiki-e/install-action@just + - name: Install uv + uses: astral-sh/setup-uv@v3 + + - name: Set up + run: uv sync + - name: Lint + run: uv run just lint