Skip to content

chore(deps): bump actions/checkout from 3 to 4 #2135

chore(deps): bump actions/checkout from 3 to 4

chore(deps): bump actions/checkout from 3 to 4 #2135

Workflow file for this run

name: 'Go formatting checker'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- name: Check Go formatting
run: if [ "$(gofmt -l . | wc -l)" -gt 0 ]; then exit 1; fi
golang-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
cache: true
- name: Install golangci-lint
run: make dev-setup
- name: make lint-ci integration
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make lint-ci
- name: Run golangci-lint
run: make lint-check