-
Notifications
You must be signed in to change notification settings - Fork 40
52 lines (42 loc) · 1.18 KB
/
go-dbhub.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
name: "go-dbhub library"
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Install NodeJS 20
uses: actions/setup-node@v4
with:
node-version: 20
# Build and start the DBHub.io daemons
- name: Checkout repository
uses: actions/checkout@v4
with:
path: daemons
- name: Build the DBHub.io daemons
run: cd daemons; sh ./build_dbhub_docker_and_local.sh
- name: Start the DBHub.io daemons
run: cd daemons; yarn docker:github
# Build and test the go-dbhub library
- name: Checkout go-dbhub library source code
uses: actions/checkout@v4
with:
repository: 'sqlitebrowser/go-dbhub'
path: library
- name: Set up Go for go-dbhub library
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build the go-dbhub library
run: cd library; go build -v
- name: Test the go-dbhub library
run: cd library; go test -v