fix linter errors #150
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: Unit Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- working-directory: ./Task1FGTC | |
run: composer update | |
- working-directory: ./Task1FGTC | |
run: composer exec phpunit tests | |
name: Task1FGTC unit tests | |
- working-directory: ./Task7RFACount | |
run: composer update | |
- working-directory: ./Task7RFACount | |
run: composer exec phpunit tests | |
name: Task7RFACount unit tests | |
- working-directory: ./TaskAPerms | |
run: composer update | |
- working-directory: ./TaskAPerms | |
run: composer exec phpunit tests | |
name: TaskAPerms unit tests |