Skip to content

✨ Add push secret #65

✨ Add push secret

✨ Add push secret #65

Workflow file for this run

name: PR
on: [pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Run Golang CI Lint
uses: golangci/golangci-lint-action@v2
timeout-minutes: 5
- name: Build
run: CGO_ENABLED=0 go build -ldflags="-w -s" -o gogci
- name: Upload artifact
uses: actions/upload-artifact@v1
with:
name: gogci
path: gogci