Skip to content

V3.1.0

V3.1.0 #1

Workflow file for this run

name: Functional tests
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Raise mock server
run: make mock-up
- name: Run functional tests
run: make tests
- name: Stop mock server
run: make mock-stop