File tree 2 files changed +16
-16
lines changed
2 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 7
7
name : Check formatting
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2
11
- - name : Create a Go workspace and install vmdfmt
12
- run : |
13
- mkdir /tmp/go
14
- export GOPATH=/tmp/go
15
- go get github.com/bobertlo/vmd/cmd/vmdfmt
16
- - name : Check formatting
17
- run : |
10
+ - uses : actions/checkout@v2
11
+ - uses : actions/setup-go@v2
12
+ with :
13
+ go-version : " 1.17.2 "
14
+ - name : Install vmdfmt
15
+ run : go install github.com/bobertlo/vmd/cmd/vmdfmt@latest
16
+ - name : Check formatting
17
+ run : |
18
18
export PATH="$PATH:/tmp/go/bin:$(pwd)/node_modules/.bin"
19
19
./ci/check_format.sh
20
20
21
21
links :
22
22
name : Check links
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions/checkout@v2
26
- - name : Link Checker
27
- id : lc
28
- uses : peter-evans/link-checker@v1
29
- - name : Fail if there were link errors
30
- run : exit ${{ steps.lc.outputs.exit_code }}
25
+ - uses : actions/checkout@v2
26
+ - name : Link Checker
27
+ id : lc
28
+ uses : peter-evans/link-checker@v1
29
+ - name : Fail if there were link errors
30
+ run : exit ${{ steps.lc.outputs.exit_code }}
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ Minutes of previous meeting are stored
19
19
20
20
## Minutes
21
21
22
- - Mounir to present Creometry, slides are
23
- [ here ] ( https://docs.google.com/presentation/d/1GsWbNwuU4k34ZYcE7K9EmUEX1QkYdhqyuW0pIN08gA8/edit?usp=sharing ) .
22
+ - Mounir to present Creometry, slides are here. (NOTE: Presentation has been deleted, so the link
23
+ has been removed)
24
24
- Parsec interest around device attestation: prove that a node is not malicious (edge node could be
25
25
provided by anyone). Current investigation in Parsec is around key attestation: proving that keys
26
26
are RoT-backed.
You can’t perform that action at this time.
0 commit comments