forked from kurrent-io/EventStore-Client-Go
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (46 loc) · 1.27 KB
/
unit_tests.yml
File metadata and controls
54 lines (46 loc) · 1.27 KB
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
name: Unit Tests
on:
pull_request:
push:
branches:
- develop
jobs:
unit-tests:
name: Run
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Generate certificates
run: |
docker-compose up
docker-compose down
- name: Run Connection Tests
run: |
cd core/connection
go test -v ./...
cd ../..
- name: Run Event Stream Tests
run: |
cd event_streams
go test -v ./...
cd ..
- name: Run Persistent Tests
run: |
cd persistent
go test -v ./...
cd ..
- name: Run Projections Tests
run: |
cd projections
go test -v ./...
cd ..
- name: Run Operations Tests
run: |
cd operations
go test -v ./...
cd ..
- name: Run User Management Tests
run: |
cd user_management
go test -v ./...
cd ..