Skip to content

chore: bump minimum Go version to 1.24 #79

chore: bump minimum Go version to 1.24

chore: bump minimum Go version to 1.24 #79

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
go-version: ["^1", "stable", "oldstable", "gomod"]
os: [ubuntu-latest, macos-latest] #windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
if: matrix.go-version != 'gomod'
with:
go-version: ${{ matrix.go-version }}
- uses: actions/setup-go@v6
if: matrix.go-version == 'gomod'
with:
go-version-file: go.mod
- run: |
diff --version
patch --version
- if: "${{ matrix.os == 'windows-latest' }}"
run: |
git config --global core.autocrlf input
git config --global core.eol lf
- run: go build -v ./...
- run: go test -v ./...
- run: go test -v -fuzz=FuzzRoundTrip -fuzztime=1m .
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json