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