terraform-provider-stackitp.../.github/workflows/ci.yaml
Alexander Dahmen 3a378c7b38 feat: Update golangci-lint version to 1.62.0 and go version to 1.23
Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
2024-11-26 15:25:49 +01:00

22 lines
407 B
YAML

name: CI Workflow
on: [pull_request, workflow_dispatch]
env:
GO_VERSION: "1.23"
jobs:
main:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
uses: ./.github/actions/build
with:
go-version: ${{ env.GO_VERSION }}
- name: Lint
run: make lint
- name: Test
run: make test