cloudflare/pint

Public

mirrored from https://github.com/cloudflare/pintAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.58.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/examples.yml

35lines · modecode

1name: Validate examples
2
3on:
4 push:
5 branches:
6 - main
7 pull_request:
8 branches:
9 - main
10
11jobs:
12 test-go:
13 runs-on: ubuntu-latest
14 steps:
15 - name: Check out code
16 uses: actions/checkout@v4
17 with:
18 show-progress: false
19
20 - name: Set up Go
21 uses: actions/setup-go@v5
22 with:
23 go-version-file: go.ver
24 cache: false
25
26 - name: Build binary
27 run: make
28
29 - name: Verify examples
30 run: |
31 export AUTH_KEY=12345
32 for CFG in docs/examples/* ; do
33 echo ">>> $CFG"
34 ./pint -c "$CFG" config
35 done
36