Skip to content

chore: refactor Go job setup in GitHub Actions #2

chore: refactor Go job setup in GitHub Actions

chore: refactor Go job setup in GitHub Actions #2

Workflow file for this run

name: Lint and Testing
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: "^1"
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --verbose --timeout 20m
- uses: hadolint/hadolint-action@v3.1.0
name: hadolint for Dockerfile
with:
dockerfile: docker/Dockerfile
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.8.0
- name: check kubectl version
run: |
kubectl version -o yaml --client
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: "^1.21"
- name: testing
run: |
make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3