Skip to content

Setup basic CI pipeline as a GitHub action #2

Setup basic CI pipeline as a GitHub action

Setup basic CI pipeline as a GitHub action #2

Workflow file for this run

name: CI
on: [pull_request]
env:
GO_VERSION: '1.21'
GOLANGCI_LINT_VERSION: 'v1.54.2'
jobs:
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Install vendors
run: make deps
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
golangci_lint_flags: "--config=.golangci.yaml"
reporter: github-pr-review
golangci_lint_version: ${{ env.GOLANGCI_LINT_VERSION }}
go_version: ${{ env.GO_VERSION }}
cache: false # managed by actions/setup-go
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.21
cache: true
- name: Install vendors
run: make deps
- name: Tests
run: make tests