Skip to content

Use CSP library

Use CSP library #4

Workflow file for this run

name: Build binary
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Dependencies
run: |
go mod tidy
- name: Build
run: |
make build