Skip to content

Update golangci-lint workflow to Go 1.24 #112

Update golangci-lint workflow to Go 1.24

Update golangci-lint workflow to Go 1.24 #112

Workflow file for this run

name: "Build and test"
on:
push:
branches: [main]
pull_request: {}
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run format
run: "! make fmt | grep . || { echo 'Go not formatted'; exit 1; }"
- name: Build program
run: make build
- name: Run tests
run: make test