-
Notifications
You must be signed in to change notification settings - Fork 7
48 lines (46 loc) · 1.2 KB
/
action.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
---
name: Action
on:
pull_request:
paths-ignore:
- '*.md'
push:
paths-ignore:
- '*.md'
jobs:
ea-mt4:
name: Run EA (MT4)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mxschmitt/action-tmate@v3
with:
detached: true
- name: Run Libre (4)
uses: ./
with:
TestExpert: EA31337-Libre-v1.013.ex4
TestFromDate: 2020.01.01
TestToDate: 2020.01.12
UrlExpert: >-
https://github.com/EA31337/EA31337-Libre/releases/download/v1.013/EA31337-Libre-v1.013.ex4
Version: 4
timeout-minutes: 20
ea-mt5:
name: Run EA (MT5)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Libre (5)
uses: ./
with:
Login: ${{ secrets.MT5_LOGIN }}
Password: ${{ secrets.MT5_PASSWORD }}
Server: MetaQuotes-Demo
TestExpert: EA31337-Libre-v1.013.ex5
TestFromDate: 2024.01.01
TestToDate: 2024.01.12
UrlExpert: >-
https://github.com/EA31337/EA31337-Libre/releases/download/v1.013/EA31337-Libre-v1.013.ex5
Version: 5
timeout-minutes: 20