We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19e13be commit 4e980e6Copy full SHA for 4e980e6
.github/workflows/tests.yml
@@ -63,8 +63,15 @@ jobs:
63
uses: shivammathur/setup-php@v2
64
with:
65
php-version: ${{ matrix.php-version }}
66
+ - name: Cache module
67
+ uses: actions/cache@v3
68
+ with:
69
+ path: ~/shunit2_2.1.8-4_all.deb
70
+ key: shunit2-cache
71
- name: Setup shunit 2
- run: sudo apt install shunit2 -y
72
+ run: |
73
+ wget http://ftp.debian.org/debian/pool/main/s/shunit2/shunit2_2.1.8-4_all.deb -O ~/shunit2_2.1.8-4.deb
74
+ sudo apt install -y ~/shunit2_2.1.8-4.deb
75
- name: Run phar tests
76
run: |
77
COMPOSER_BIN="/bin/composer" COMPOSER_OPTIONS="${{ matrix.composer-options }}" ./tests/phar/tests.sh
0 commit comments