Skip to content

Commit a03572b

Browse files
committed
gh action change
1 parent 9a033da commit a03572b

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

.github/workflows/go-test.yaml.bak

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: go - Run tests
2+
3+
on:
4+
pull_request:
5+
types: [opened, reopened, synchronize, closed]
6+
7+
jobs:
8+
9+
go-test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-go@v5
14+
with:
15+
go-version-file: go.mod
16+
17+
- run: |
18+
go test -v
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: tailscale-acl-combiner - Generate and check against known artifact
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
tailscale-acl-combiner:
8+
runs-on: ubuntu-latest
9+
env:
10+
ACL_FILE_TO_GENERATE: generated.hujson
11+
ACL_FILE_TO_COMPARE_TO: testdata/output-file-to-compare-to.hujson
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-go@v5
15+
with:
16+
go-version-file: go.mod
17+
18+
- name: generate file
19+
run: |
20+
go build -o tmp-tailscale-acl-combiner
21+
./tmp-tailscale-acl-combiner -f testdata/input-parent.hujson -d testdata/departments -allow acls,extraDNSRecords,grants,groups,ssh,tests -o $ACL_FILE_TO_GENERATE
22+
23+
- name: compare generated file
24+
run: |
25+
diff -c $ACL_FILE_TO_COMPARE_TO $ACL_FILE_TO_GENERATE
26+
echo 'Success: files match!'

0 commit comments

Comments
 (0)