-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 1.2 KB
/
nilaway.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: nilaway
on: [push, pull_request]
permissions:
contents: read
pull-requests: read
jobs:
nilaway-server:
name: nilaway-server
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: WillAbides/setup-go-faster@v1
with:
go-version: '1.21'
- name: download nilaway
run: go install go.uber.org/nilaway/cmd/nilaway@latest
- name: run nilaway on server
run: cd server && nilaway .
nilaway-forwarder:
name: nilaway-forwarder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: WillAbides/setup-go-faster@v1
with:
go-version: '1.21'
- name: download nilaway
run: go install go.uber.org/nilaway/cmd/nilaway@latest
- name: run nilaway on forwarder
run: cd forwarder && nilaway .
nilaway-recorder:
name: nilaway-recorder
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: WillAbides/setup-go-faster@v1
with:
go-version: '1.21'
- name: download nilaway
run: go install go.uber.org/nilaway/cmd/nilaway@latest
- name: run nilaway on recorder
run: cd recorder && nilaway .