Skip to content

Commit

Permalink
Setup checks related to golang in gha/ci && Address issues
Browse files Browse the repository at this point in the history
- Add .golangci.yml
  • Loading branch information
danroux committed Apr 4, 2024
1 parent 53b7b25 commit b4427a0
Show file tree
Hide file tree
Showing 18 changed files with 1,535 additions and 140 deletions.
3 changes: 3 additions & 0 deletions .changelog/19.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
golang: Setup checks related to golang in gha/ci
```
72 changes: 72 additions & 0 deletions .github/workflows/golang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Go

on:
push:
branches:
- main
pull_request:

# permissions:
# # Required: allow read access to the content for analysis.
# contents: read
# # Optional: allow read access to pull request. Use with `only-new-issues` option.
# # pull-requests: read
# # Optional: Allow write access to checks to allow the action to annotate code in the PR.
# checks: write

jobs:
linters:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '^1.22' ]
name: Go ${{ matrix.go }} linters
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ matrix.go }}
check-latest: false
cache: false
id: go
- name: golangci-lint
uses: golangci/golangci-lint-action@3cfe3a4abbb849e10058ce4af15d205b6da42804 # v4.0.0
with:
version: v1.57
# Optional: golangci-lint command line arguments.
#
# Note: By default, the `.golangci.yml` file should be at the root of the repository.
# The location of the configuration file can be changed by using `--config=`
# args: --timeout=30m --config=/my/path/.golangci.yml --issues-exit-code=0

# Optional: show only new issues if it's a pull request. The default value is `false`.
# only-new-issues: true

# skip-cache: true
tests:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '^1.22' ]
name: Go ${{ matrix.go }} tests
# needs: [linters]
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ matrix.go }}
check-latest: false
cache: false
id: go
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -v -coverprofile=coverage.out ./...
Loading

0 comments on commit b4427a0

Please sign in to comment.