Merge pull request #4 from botify-labs/docs/changelog #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |