Fix execute fn in assistant #30
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: Bash tests | |
on: | |
push: | |
branches: | |
- feature/add-testnig-base | |
pull_request: | |
branches: | |
- feature/add-testnig-base | |
env: | |
NO_COLOR: TRUE | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
tools: composer | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run composer | |
run: | | |
pwd | |
mkdir test1 | |
ls -la | |
echo "ENV variables" | |
env | |
echo "End ENV" | |
php --version | |
cat composer.json | |
composer install --ignore-platform-reqs | |
composer boilerplate:assistant | |
- name: Run tests | |
run: | | |
pwd | |
cd testingProject | |
.github/workflows/tests/bash/dummyTest.sh | |