-
-
Notifications
You must be signed in to change notification settings - Fork 37
58 lines (58 loc) · 1.46 KB
/
docs.yml
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
47
48
49
50
51
52
53
54
55
56
57
58
name: docs
"on":
- push
env:
HOF_TELEMETRY_DISABLED: "1"
jobs:
docs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- run: |-
mkdir tmp
cd tmp
wget https://github.com/cue-lang/cue/releases/download/v0.8.2/cue_v0.8.2_linux_amd64.tar.gz -O cue.tar.gz
tar -xf cue.tar.gz
sudo mv cue /usr/local/bin/cue
cd ../
rm -rf tmp
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Vars
id: vars
run: |-
SHA=${GITHUB_SHA::8}
TAG=$(git tag --points-at HEAD)
echo "HOF_FMT_VERSION=${TAG}" >> $GITHUB_ENV
if [ -z $TAG ]; then
TAG=${SHA}
fi
echo "HOF_SHA=${SHA}" >> $GITHUB_ENV
echo "HOF_TAG=${TAG}" >> $GITHUB_ENV
- name: Fetch Go deps
run: go mod download
- name: Build hof
run: go install ./cmd/hof
- name: Setup
run: |-
hof fmt start [email protected]
cd docs
hof mod link
make tools
make deps
- name: Test
run: |-
hof fmt start [email protected]
cd docs
make gen
make test
make run &
make broken-link
strategy: {}
services: {}