Skip to content

dev: exclude chore from changelog #75

dev: exclude chore from changelog

dev: exclude chore from changelog #75

Workflow file for this run

name: Build
on:
push:
branches:
- master
- build/*
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: Lint
uses: golangci/golangci-lint-action@v4
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.57.2
args: --timeout 10m
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Setup Go"
uses: actions/setup-go@v5
with:
go-version-file: go.mod
check-latest: true
- name: "Setup Go modules cache"
uses: "actions/cache@v4"
with:
path: "~/go/pkg/mod"
key: "${{ runner.os }}-go-${{ hashFiles('go.sum') }}"
restore-keys: "${{ runner.os }}-go-"
- name: Build Binary
run: go build ./cmd/e3dc
- name: Run Test
run: go test -race -coverprofile coverage.out -covermode atomic -v ./...
- name: Upload Coverage
uses: codecov/codecov-action@v4
with:
files: ./coverage.out
verbose: true