Skip to content

Bump actions/jekyll-build-pages from 1.0.9 to 1.0.10 #1877

Bump actions/jekyll-build-pages from 1.0.9 to 1.0.10

Bump actions/jekyll-build-pages from 1.0.9 to 1.0.10 #1877

Workflow file for this run

name: Validate examples
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-go:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
show-progress: false
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build binary
run: make
- name: Verify examples
run: |
export AUTH_KEY=12345
for CFG in docs/examples/* ; do
echo ">>> $CFG"
./pint -c "$CFG" config
done