Merge pull request #701 from EA31337/dev #178
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 Buffer | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
paths: | |
- 'Buffer/**' | |
- '.github/workflows/test-buffer.yml' | |
push: | |
paths: | |
- 'Buffer/**' | |
- '.github/workflows/test-buffer.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: 'Buffer/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' | |
Buffer-Tests-MQL4: | |
defaults: | |
run: | |
shell: bash | |
working-directory: Buffer/tests | |
needs: Compile | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test: | |
- BufferCandle.test | |
- BufferTick.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 |