Refs EA31337/EA31337-indicators-stats#2. Closed to finish Indi_Accoun… #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Test Account | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
paths: | |
- 'Account/**.h' | |
- '.github/workflows/test-account.yml' | |
push: | |
paths: | |
- 'Account/**.h' | |
- '.github/workflows/test-account.yml' | |
jobs: | |
Compile: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Compile | |
uses: fx31337/mql-compile-action@master | |
with: | |
init-platform: true | |
path: 'Account/tests' | |
verbose: true | |
- name: Print compiled files | |
run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname' | |
shell: powershell | |
- name: Upload artifacts (MQL4) | |
uses: actions/upload-artifact@v2 | |
with: | |
name: files-ex4 | |
path: '**/*.ex4' | |
- name: Upload artifacts (MQL5) | |
uses: actions/upload-artifact@v2 | |
with: | |
name: files-ex5 | |
path: '**/*.ex5' | |
Account-Tests-MQL4: | |
defaults: | |
run: | |
shell: bash | |
working-directory: Account/tests | |
needs: Compile | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test: | |
- Account.test | |
- AccountForex.test | |
- AccountMt.test | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
name: files-ex4 | |
- name: Run ${{ matrix.test }} | |
uses: fx31337/mql-tester-action@master | |
with: | |
Script: ${{ matrix.test }} | |
timeout-minutes: 10 |