Skip to content

Fix: Add filters to replicasets #600

Fix: Add filters to replicasets

Fix: Add filters to replicasets #600

Workflow file for this run

name: build-lint-test
on:
push:
branches:
- main
paths:
- '**/*.go'
pull_request:
types:
- opened
- synchronize
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
skip-cache: true
- name: Build
run: make build
- name: Test
run: make test
- name: Upload coverage reports
uses: codecov/codecov-action@v4
with:
files: coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}