Skip to content

perf: Decrease execution times by 1000% [DT-7499] (#277) #200

perf: Decrease execution times by 1000% [DT-7499] (#277)

perf: Decrease execution times by 1000% [DT-7499] (#277) #200

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- "*"
jobs:
build:
name: Build
runs-on: ubuntu-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
- run: make test-all
- name: Run GoReleaser
if: github.ref != 'refs/heads/main'
uses: goreleaser/goreleaser-action@7ec5c2b0c6cdda6e8bbb49444bc797dd33d74dd8
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}