Skip to content

scripts/install_mt4: Corrects another typo #298

scripts/install_mt4: Corrects another typo

scripts/install_mt4: Corrects another typo #298

Workflow file for this run

---
name: Tests-Shell
# yamllint disable-line rule:truthy
on:
pull_request:
paths:
- '**/*.sh'
- '.github/workflows/tests-shell.yml'
push:
paths:
- '**/*.sh'
- '.github/workflows/tests-shell.yml'
jobs:
Test-Scripts:
defaults:
run:
shell: bash
working-directory: scripts/tests
runs-on: ubuntu-latest
container:
env:
OPT_TRACE: ${{ runner.debug }}
OPT_VERBOSE: true
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/scripts:/opt/scripts/py
# Refs: https://stackoverflow.com/q/16818101/55075
WINEPREFIX: /tmp/.wine
image: ea31337/ea-tester:dev
options: --user root
strategy:
matrix:
test:
- ./test_aliases.sh
- ./test_backtest.sh
- ./test_bt_data_gen.sh
- ./test_cmds.sh
- ./test_compile.sh
- ./test_eval.sh
- ./test_vars.sh
steps:
- uses: actions/checkout@v4
env:
# Refs: https://github.com/actions/checkout/issues/956
GIT_CEILING_DIRECTORIES: /__w
- name: Link scripts directory to /opt/scripts
run: ln -fsv /__w/EA-Tester/EA-Tester/scripts /opt/scripts
- run: find /__w /opt -print
- run: ${{ matrix.test }}
env:
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/scripts:/opt/scripts/py
timeout-minutes: 20