cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.36.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

.github/workflows/examples.yml

32lines · 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@v3
17
18 - name: Set up Go
19 uses: actions/setup-go@v3
20 with:
21 go-version: 1.19.1
22
23 - name: Build binary
24 run: make
25
26 - name: Verify examples
27 run: |
28 export AUTH_KEY=12345
29 for CFG in docs/examples/* ; do
30 echo ">>> $CFG"
31 ./pint -c "$CFG" config
32 done
33