From 1b4c777ed3caa1f250ac0985f4ed94b440eeed6d Mon Sep 17 00:00:00 2001 From: 9seconds Date: Wed, 11 Feb 2026 11:58:30 +0100 Subject: [PATCH] Use mise for fuzzing --- .github/workflows/ci.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8cda7bc..debf97c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -92,14 +92,17 @@ jobs: restore-keys: ${{ runner.os }}-go- - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: ${{ runner.os }}-go- - - name: Run fuzzing - run: make -j4 fuzz + - uses: jdx/mise-action@v3 + name: Install mise + + - run: mise tasks run 'test:fuzz:*' + lint: name: Lint