Merging origin/v3.006-dev into v3.008-dev-new with C++ and CI fixes #41
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 Platform/Chart | ||
env: | ||
TEST_PATH: Platform/Chart/tests | ||
TEST_SKIP: ${{ secrets.MT5_LOGIN || false }} | ||
# yamllint disable-line rule:truthy | ||
on: | ||
pull_request: | ||
paths: | ||
- .github/workflows/test-platform-chart.yml | ||
- Platform/Chart/** | ||
push: | ||
paths: | ||
- .github/workflows/test-platform-chart.yml | ||
- Platform/Chart/** | ||
jobs: | ||
compile: | ||
name: Compile | ||
uses: ./.github/workflows/compile-mql.yml | ||
with: | ||
artifact_prefix: mt | ||
path: Platform/Chart/tests | ||
skip_cleanup: true | ||
test: | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: ${{ env.TEST_PATH }} | ||
if: ${{ ! env.TEST_SKIP }} | ||
Check failure on line 34 in .github/workflows/test-platform-chart.yml GitHub Actions / Test Platform/ChartInvalid workflow file
|
||
name: Test | ||
needs: compile | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
test: | ||
- Chart.test | ||
- ChartMt.test | ||
version: [5] | ||
max-parallel: 4 | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: files-ex${{ matrix.version }} | ||
- name: List compiled files | ||
run: find . -name '*.ex?' -type f -print | ||
- name: Run ${{ matrix.test }} | ||
uses: fx31337/mql-tester-action@master | ||
with: | ||
Login: ${{ secrets.MT5_LOGIN }} | ||
Password: ${{ secrets.MT5_PASSWORD }} | ||
Server: MetaQuotes-Demo | ||
TestDeposit: 2000 | ||
TestExpert: ${{ matrix.test }} | ||
TestFromDate: ${{ matrix.year }}.01.01 | ||
TestPeriod: M1 | ||
TestSymbol: EURUSD | ||
TestToDate: ${{ matrix.year }}.01.14 | ||
# yamllint disable-line rule:line-length | ||
UrlExpert: file://${{ github.workspace }}/${{ env.TEST_PATH }}/${{ matrix.test }}.ex${{ matrix.version }} | ||
Version: 5 | ||
- if: ${{ failure() }} | ||
uses: mxschmitt/action-tmate@v3 | ||
timeout-minutes: 20 | ||
cleanup: | ||
name: Clean-up | ||
needs: [compile] | ||
uses: ./.github/workflows/cleanup.yml |