fix example, run examples in ci #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
pull_request: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout source | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: setup go | |
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: '1.22' | |
- name: unit tests | |
run: go test -v -cover ./... | |
- name: run example go programs | |
run: | | |
for d in $(find examples -type d -mindepth 1 -maxdepth 1); do | |
(set -x && go run $d/*.go) | |
done | |
- name: build binaries | |
run: | | |
go build -o bin/tq main.go | |
go build -o bin/json2jq extras/tf2json/tf2json.go | |
go build -o bin/json2jq extras/json2tf/json2tf.go |