Ver código fonte

Use mise for fuzzing

tags/v2.1.8^2
9seconds 2 meses atrás
pai
commit
1b4c777ed3
1 arquivos alterados com 6 adições e 3 exclusões
  1. 6
    3
      .github/workflows/ci.yaml

+ 6
- 3
.github/workflows/ci.yaml Ver arquivo

92
           restore-keys: ${{ runner.os }}-go-
92
           restore-keys: ${{ runner.os }}-go-
93
 
93
 
94
       - name: Cache dependencies
94
       - name: Cache dependencies
95
-        uses: actions/cache@v2
95
+        uses: actions/cache@v5
96
         with:
96
         with:
97
           path: ~/go/pkg/mod
97
           path: ~/go/pkg/mod
98
           key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
98
           key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
99
           restore-keys: ${{ runner.os }}-go-
99
           restore-keys: ${{ runner.os }}-go-
100
 
100
 
101
-      - name: Run fuzzing
102
-        run: make -j4 fuzz
101
+      - uses: jdx/mise-action@v3
102
+        name: Install mise
103
+
104
+      - run: mise tasks run 'test:fuzz:*'
105
+
103
 
106
 
104
   lint:
107
   lint:
105
     name: Lint
108
     name: Lint

Carregando…
Cancelar
Salvar