Update golang version to 1.22 #13
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: PR checks | |
permissions: | |
id-token: write # required to use OIDC authentication | |
contents: read # required to check out the code from the repo | |
on: | |
workflow_dispatch: | |
inputs: {} | |
pull_request: | |
jobs: | |
check-go: | |
name: Lint & execute go tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dir: ["cloudwatchmetrics", "csvexport"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v3 | |
with: | |
role-to-assume: arn:aws:iam::917827854074:role/technical/github/github-technical-20220615124606188800000001 | |
role-duration-seconds: 900 # the ttl of the session, in seconds. | |
aws-region: eu-central-1 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22.x" | |
- name: Install dependencies | |
run: | | |
go version | |
go install golang.org/x/lint/golint@latest | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
only-new-issues: true | |
args: --issues-exit-code=0 --timeout 300s | |
working-directory: "./pkg/${{ matrix.dir }}" | |
- name: Check | |
run: | | |
go vet ./... | |
golint ./... | |
working-directory: "./pkg/${{ matrix.dir }}" | |
- name: Test | |
run: | | |
go test ./... | |
working-directory: "./pkg/${{ matrix.dir }}" |