-
-
Notifications
You must be signed in to change notification settings - Fork 101
51 lines (47 loc) · 1.05 KB
/
test-storage.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
---
name: Test Storage
# yamllint disable-line rule:truthy
on:
pull_request:
paths:
- 'Storage/**'
- '.github/workflows/test-storage.yml'
push:
paths:
- 'Storage/**'
- '.github/workflows/test-storage.yml'
jobs:
compile:
name: Compile
uses: ./.github/workflows/compile-mql.yml
with:
artifact_prefix: mt
path: Exchange
skip_cleanup: true
Tests-MQL4:
defaults:
run:
shell: bash
working-directory: Storage/tests
needs: Compile
runs-on: ubuntu-latest
strategy:
matrix:
test:
- Collection.test
- Database.test
- DateTime.test
- ItemsHistory.test
- Object.test
- Redis.test
- ValueStorage.test
steps:
- uses: actions/download-artifact@v3
with:
name: files-ex4
- name: Run ${{ matrix.test }}
uses: fx31337/mql-tester-action@master
with:
Script: ${{ matrix.test }}
RunOnError: show_logs 200
timeout-minutes: 10