diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a227bc..23979fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,13 +23,21 @@ jobs: - name: Run lint task run: mise run lint - - name: Ensure repo is clean - run: | - if [ -n "$(git status --porcelain)" ]; then - git status --short - echo "error: lint modified files" - exit 1 - fi + test: + name: Test + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v6 + + - name: Setup mise + uses: jdx/mise-action@v4 + with: + install: true + cache: true + + - name: Run test task + run: mise run test check-doc: name: Docs up-to-date