Skip to content

chore: Configure Renovate #10

chore: Configure Renovate

chore: Configure Renovate #10

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
env:
GO_VERSION: '1.24'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.1
args: --timeout 5m
test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Run tests
run: go test -v -race -coverprofile=coverage.out ./...
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage.out
retention-days: 7
validate-kustomize:
name: Validate Kustomize
uses: datum-cloud/actions/.github/workflows/validate-kustomize.yaml@main
lint-workflows:
name: Lint Workflows
uses: datum-cloud/actions/.github/workflows/lint-workflows.yaml@main