You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* LIMS-1983: Update phpCAS and php-jwt (#1005)
* LIMS-1970: Fix Logs & Files view if filepath is null (#1004)
* LIMS-1962: Allow downloading of html files (#1006)
* LIMS-1431 - Display Metal Id downstream pipeline (#1003)
* LIMS-1854: Prevent submission of multiple reprocessing jobs (#1009)
* LIMS-1956: Add dewar names and serial nos to shipment requests (#1000)
* Fix unit tests (#1015)
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+7-11Lines changed: 7 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,6 @@ defaults:
19
19
shell: bash
20
20
working-directory: ./api
21
21
22
-
# Note, jobs do not share the same working environment, whereas steps do. Also, jobs will run in parallel unless the 'needs' tag is used to flag a dependency
23
22
jobs:
24
23
php-build:
25
24
name: Checkout, build, test and lint PHP code
@@ -33,6 +32,9 @@ jobs:
33
32
with:
34
33
php-version: 7.3
35
34
tools: psalm:4
35
+
# Added extensions and coverage here so they are ready for the native run
36
+
extensions: mysqli, zip, xdebug
37
+
coverage: xdebug
36
38
37
39
- name: Validate composer.json and composer.lock
38
40
run: composer validate
@@ -49,17 +51,12 @@ jobs:
49
51
- name: Install dependencies
50
52
run: composer install --prefer-dist --no-progress
51
53
54
+
# CHANGED: Replaced php-actions/phpunit with native execution
55
+
# This runs the PHPUnit located in your vendor folder, avoiding the PHAR crash
0 commit comments