fix: build RPM packages as part of our CI #514
Workflow file for this run
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: Lint | |
on: pull_request | |
jobs: | |
lint-commits: | |
name: Lint commits | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- run: go mod download | |
- name: Run commitsar | |
uses: aevea/[email protected] | |
lint-code: | |
name: Lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.19" | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: latest | |
args: --verbose --timeout=3m | |
- name: Set up golines | |
run: go install github.com/segmentio/golines@latest | |
- name: Run golines | |
run: if [ "$(golines . --dry-run | wc -l)" -gt 0 ]; then exit 1; fi | |
lint-language: | |
name: Lint language | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run woke | |
uses: get-woke/woke-action@v0 | |
with: | |
fail-on-error: true |