Skip to content

Merge pull request #44 from axiomhq/fix/Optional-descriptions #72

Merge pull request #44 from axiomhq/fix/Optional-descriptions

Merge pull request #44 from axiomhq/fix/Optional-descriptions #72

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
push:
branches:
- main
merge_group:
types:
- checks_requested
# Make sure the workflow is only ever run for the latest
# changes in the PR.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- run: echo "GOLANGCI_LINT_VERSION=$(go list -m -f '{{.Version}}' github.com/golangci/golangci-lint)" >> $GITHUB_ENV
- uses: golangci/golangci-lint-action@v4
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: --timeout=5m
build:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: Run build
run: make build