-
Notifications
You must be signed in to change notification settings - Fork 18
37 lines (30 loc) · 889 Bytes
/
go.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
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: src/notifications/go.mod
check-latest: true
- name: Set up MySQL
run: |
sudo systemctl start mysql.service
mysql -uroot -proot -e "CREATE DATABASE notifications_test;"
- name: Test
run: |
pushd src/notifications
export DATABASE_URL="root:root@localhost:3306/notifications_test"
go install github.com/onsi/ginkgo/v2/ginkgo@v2
ginkgo version
bin/test
popd