-
Notifications
You must be signed in to change notification settings - Fork 5
50 lines (50 loc) · 1.37 KB
/
verify.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
name: Verify
permissions: {}
on:
pull_request:
jobs:
generate:
name: Go generate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: 'backend/go.mod'
- name: Cache tofu binary
uses: actions/cache@v4
with:
path: ./backend/internal/moduleindex/moduleschema/testtofu
key: tofu-binary
- name: Run go generate
working-directory: backend
run: go generate ./...
- name: Check if there are any changes
run: |
if [ "$(git diff | wc -l)" -ne 0 ]; then
echo "Changes detected after go generate. Please run go generate ./... and push your changes."
fi
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: 'backend/go.mod'
- name: Cache tofu binary
uses: actions/cache@v4
with:
path: ./backend/internal/moduleindex/moduleschema/testtofu
key: tofu-binary
- name: Run go generate
working-directory: backend
run: go generate ./...
- name: Run tests
working-directory: backend
run: |
go test ./...