Skip to content

fixing github actions #2

fixing github actions

fixing github actions #2

Workflow file for this run

name: build
on:
push:
branches:
- main
paths-ignore:
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- '*.md'
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
permissions: read-all
env:
CI: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.19.x
- run: go get -v -t -d ./...
- run: go build -v .