v3.007-dev-new -> v3.008-dev-new merge. Contains fixes to ItemsHistory. PR is not yet ready for merge. #579
Workflow file for this run
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 Indicators (Special) | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
paths: | |
- 'Indicator**' | |
- 'Indicators/Special/**' | |
- '.github/workflows/test-indicators-special.yml' | |
push: | |
paths: | |
- 'Indicator**' | |
- 'Indicators/Special/**' | |
- '.github/workflows/test-indicators-special.yml' | |
jobs: | |
compile: | |
name: Compile | |
uses: ./.github/workflows/compile.yml | |
with: | |
artifact_prefix: mt | |
path: Indicators/Special | |
skip_cleanup: true | |
Indicators-Tests-MQL4: | |
defaults: | |
run: | |
shell: bash | |
working-directory: Indicators/tests | |
if: false | |
needs: compile | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
test: | |
- Indi_Custom.test | |
steps: | |
- uses: actions/download-artifact@v2 | |
with: | |
name: files-ex4 | |
- name: Run ${{ matrix.test }} | |
uses: fx31337/mql-tester-action@master | |
with: | |
BtDays: 4-8 | |
BtMonths: 1 | |
BtYears: 2021 | |
MtVersion: 4.0.0.1359 | |
RunOnError: show_logs 200 | |
TestExpert: ${{ matrix.test }} | |
timeout-minutes: 10 | |
cleanup: | |
name: Clean-up | |
needs: [compile] | |
uses: ./.github/workflows/cleanup.yml |