File tree Expand file tree Collapse file tree 1 file changed +14
-18
lines changed Expand file tree Collapse file tree 1 file changed +14
-18
lines changed Original file line number Diff line number Diff line change 1414 - dev
1515
1616jobs :
17- # my-testing:
17+ runs-on : ubuntu-latest
18+
19+ my-testing :
1820# runs-on: ubuntu-latest
1921
20- # steps:
21- # - name: Run testing
22- # run: echo Testing is running...
22+ steps :
23+ - name : Run testing
24+ run : echo Testing is running...
2325#
2426# - name: Print env variables
2527# run: |
2628# echo "App Name: ${{ env.APP_NAME }}"
2729
2830
2931 my-deploy :
30- runs-on : ubuntu-latest
32+ # runs-on: ubuntu-latest
3133 # needs: [my-testing]
3234
3335 steps :
@@ -46,19 +48,13 @@ jobs:
4648 composer --version
4749 phpunit --version
4850
49- - name : Install Composer
50- run : |
51- apt-get update && apt-get install -y unzip
52- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
53- composer install
54-
55- - name : Install PHPUnit
56- run : composer require phpunit/phpunit ^7
57-
58- - name : Check again some packages if they are installed
59- run : |
60- composer --version
61- phpunit --version
51+ # - name: Re-install PHPUnit
52+ # run: composer require phpunit/phpunit ^7
53+ #
54+ # - name: Check again some packages if they are installed
55+ # run: |
56+ # composer --version
57+ # phpunit --version
6258
6359 - name : Runt PHPUnit tests
6460 run : composer tests
You can’t perform that action at this time.
0 commit comments