-
Notifications
You must be signed in to change notification settings - Fork 20
68 lines (64 loc) · 1.75 KB
/
test.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
60
61
62
63
64
65
66
67
68
name: Test
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=30m
- name: Jape Analyzer
uses: SiaFoundation/action-golang-analysis@HEAD
with:
analyzers: |
go.sia.tech/jape.Analyzer@master
directories: |
autopilot
bus bus/client
worker worker/client
flags: |
-japecheck.types=false
test-sqlite: # Run all tests against SQLite
needs: analyze
uses: SiaFoundation/workflows/.github/workflows/go-test.yml@master
secrets: inherit
test-mysql: # Run all tests against MySQL
needs: analyze
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22", "1.23"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Configure MySQL
uses: mirromutth/[email protected]
with:
host port: 3800
mysql version: "8"
mysql root password: test
- name: Test
uses: SiaFoundation/workflows/.github/actions/go-test@master
env:
RENTERD_DB_URI: 127.0.0.1:3800
RENTERD_DB_USER: root
RENTERD_DB_PASSWORD: test
with:
go-test-args: "-race;-timeout=20m;-tags=netgo"
success: # Use in branch rulesets to ensure all matrix jobs completed successfully
needs: [test-sqlite, test-mysql]
runs-on: ubuntu-latest
steps:
- run: echo "Success!"