Skip to content

Commit b0eedd7

Browse files
committed
Added GitHub Actions (tests)
1 parent e9f25f6 commit b0eedd7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/functional.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Functional tests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Raise mock server
17+
run: make mock-up
18+
19+
- name: Run functional tests
20+
run: make tests
21+
22+
- name: Stop mock server
23+
run: make mock-stop

0 commit comments

Comments
 (0)