Skip to content

Merge pull request #4 from botify-labs/docs/changelog #38

Merge pull request #4 from botify-labs/docs/changelog

Merge pull request #4 from botify-labs/docs/changelog #38

Workflow file for this run

---
name: CI
on: # yamllint disable-line rule:truthy
push:
branches:
- main
tags:
- v*
pull_request: {}
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
# Whenever the Go version is updated here, .promu.yml should also be updated.
go-version: 1.21.x
- name: Build
run: make build
- name: Lint
uses: golangci/golangci-lint-action@v3
- name: Test
run: make test