Skip to content

feat(ci): add Fedora COPR packaging #3

feat(ci): add Fedora COPR packaging

feat(ci): add Fedora COPR packaging #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build ./cmd/...
- name: Test
run: go test ./...
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.11