File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 steps :
1313
1414 - name : Checkout
15- uses : actions/checkout@v3
15+ uses : actions/checkout@v4
1616 with :
1717 fetch-depth : 0
1818
2626 run : make compile
2727
2828 - name : Upload Artifact
29- uses : actions/upload-artifact@v3
29+ uses : actions/upload-artifact@v4
3030 with :
3131 name : mtxpc.phar
3232 path : ${{ github.workspace }}/build/mtxpc.phar
Original file line number Diff line number Diff line change 1515 steps :
1616
1717 - name : Checkout
18- uses : actions/checkout@v3
18+ uses : actions/checkout@v4
1919
2020 - name : Build Phar
2121 run : make compile
Original file line number Diff line number Diff line change 11.PHONY : all build lint lint-fix test test-integration test-unit test-static repl generate-fixtures process-reports compile clean help
22
3+ HOST_UID ?= ` id -u `
4+ HOST_GID ?= ` id -g `
35IMAGE? =latest
4- PHP =docker compose run --rm php
6+ PHP =docker compose run --rm -u $( HOST_UID ) : $( HOST_GID ) php
57
68all : test
79
@@ -36,7 +38,7 @@ compile: vendor
3638 $(PHP ) composer compile
3739
3840clean :
39- $(PHP ) rm -rf vendor composer.lock
41+ $(PHP ) rm -rf build composer.lock .phpunit.result.cache vendor .test-result
4042
4143generate-fixtures :
4244 $(PHP ) composer generate-fixtures
You can’t perform that action at this time.
0 commit comments