chore: refactor Go job setup in GitHub Actions #2
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: 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 |