-
Notifications
You must be signed in to change notification settings - Fork 46
59 lines (48 loc) · 1.28 KB
/
build.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
59
name: sedge CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
name: Build sedge
strategy:
matrix:
go: ["1.19"]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Install gofumpt
if: matrix.os == 'ubuntu-latest'
run: make install-gofumpt
- name: Check Format Unix
if: matrix.os == 'ubuntu-latest'
run: test -z "$(gofumpt -l . | tee >(cat 1>&2))"
- name: Install mockgen
run: make install-mockgen
- name: Generate mocks
run: make generate
- name: Check go mod status
run: |
make gomod_tidy
if [[ ! -z $(git status -s) ]];
then
echo "Go mod - state is not clean:"
git status -s
git diff "$GITHUB_SHA"
exit 1
fi
shell: bash
- name: Check build
run: make compile