Skip to content

Build static binaries unless told otherwise #61

Build static binaries unless told otherwise

Build static binaries unless told otherwise #61

Workflow file for this run

name: secrets
on:
push:
paths:
- 'secrets/**'
- '.github/workflows/secrets*'
pull_request:
paths:
- 'secrets/**'
- '.github/workflows/secrets*'
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: secrets
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/cache@v3
with:
path: |
~/.cache/
~/go/
key: golang-${{ runner.os }}-secrets-${{ hashFiles('**/go.sum') }}
restore-keys: |
golang-${{ runner.os }}-all-subprojects-${{ hashFiles('**/go.sum') }}
golang-${{ runner.os }}-secrets
golang-${{ runner.os }}-all-subprojects
golang-${{ runner.os }}
- run: make ci