Skip to content

fix: cleanup obsolete vscode settings #196

fix: cleanup obsolete vscode settings

fix: cleanup obsolete vscode settings #196

Workflow file for this run

name: Go Fuzz
on: [push]
concurrency:
group: fuzz-${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
fuzz:
name: fuzz
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 20
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: "^1.23"
id: go
- name: Set up macOS
if: startsWith(matrix.os, 'macos-')
run: |
brew install make
- name: Set up Linux
if: startsWith(matrix.os, 'ubuntu-')
run: |
set -x
if [ ! -x /usr/bin/gmake ]; then
sudo ln -snfv /usr/bin/make /usr/bin/gmake
fi
- name: Get tags to make version.go
run: |
git fetch origin +refs/tags/*:refs/tags/*
d=30
while ! gmake info ; do
git fetch --deepen=$d origin +refs/tags/*:refs/tags/*
d=$((d+10))
done
- name: Run fuzz tests
run: gmake test-fuzz