Skip to content

Bump filippo.io/age from 1.2.1-0.20240926110859-2214a556f604 to 1.2.1 #33

Bump filippo.io/age from 1.2.1-0.20240926110859-2214a556f604 to 1.2.1

Bump filippo.io/age from 1.2.1-0.20240926110859-2214a556f604 to 1.2.1 #33

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: "go.mod"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...