From 5d119e6cdc3a3e265ba597f01bd045c00c977411 Mon Sep 17 00:00:00 2001 From: Kierre Date: Wed, 12 Nov 2025 18:05:24 +0000 Subject: [PATCH] Update .gitea/workflows/test.yaml --- .gitea/workflows/test.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 0ebe3e9..452bd4b 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -7,18 +7,20 @@ on: jobs: precommit: + runs-on: ubuntu-latest + container: catthehacker/ubuntu:act-latest steps: - - name: checkout code - uses: actions/checkout@v2 + - name: Checkout repo + uses: actions/checkout@v4 - - name: python + - name: Setup Python 3.12 uses: actions/setup-python@v4 with: python-version: '3.12' - - name: install + - name: Install pre-commit run: | pip install pre-commit - - name: run + - name: Run pre-commit hooks run: pre-commit