-
Notifications
You must be signed in to change notification settings - Fork 3
51 lines (38 loc) · 896 Bytes
/
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
name: Refresh Build
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '>=1.21.0'
id: go
- name: Tidy
run: go mod tidy
- name: Test
run: go test -v ./engine
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '>=1.21.0'
- name: Dependencies
run: go mod tidy
- name: Build application
run: go build ./cmd/refresh/
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: refresh
path: ./refresh