Skip to content

Update golang version to 1.22 #14

Update golang version to 1.22

Update golang version to 1.22 #14

Workflow file for this run

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-20240307102201359300000002
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 }}"