forked from blinklabs-io/gouroboros
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 814 Bytes
/
Copy pathbuild-examples.yml
File metadata and controls
32 lines (29 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: build-examples
on:
push:
tags:
- v*
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build-examples:
name: build-examples
strategy:
matrix:
go-version: [1.25.x, 1.26.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 https://github.com/actions/checkout/releases/tag/v7.0.0
with:
submodules: true
persist-credentials: false
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 https://github.com/actions/setup-go/releases/tag/v6.5.0
with:
go-version: ${{ matrix.go-version }}
cache: false
- name: build-examples
run: make build