Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 32 additions & 32 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,40 +170,40 @@ jobs:
# BASILISP_TEST_FILE_PATTERN='.*\.(lpy|cljc)' \
# basilisp test -p test -- -n 0

#test-phel:
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# php: ['8.4', '8.5']
# steps:
# - uses: actions/checkout@v4
test-phel:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.4', '8.5']
steps:
- uses: actions/checkout@v4

# - uses: shivammathur/setup-php@v2
# with:
# php-version: ${{ matrix.php }}
# coverage: none
# tools: composer
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer

# - name: Cache Composer downloads
# uses: actions/cache@v4
# with:
# path: ~/.composer/cache
# key: composer-${{ matrix.php }}-${{ hashFiles('composer.lock') }}
# restore-keys: |
# composer-${{ matrix.php }}-
- name: Cache Composer downloads
uses: actions/cache@v4
with:
path: ~/.composer/cache
key: composer-${{ matrix.php }}-${{ hashFiles('composer.lock') }}
restore-keys: |
composer-${{ matrix.php }}-

# - name: Cache Phel compiled artifacts
# uses: actions/cache@v4
# with:
# path: .phel/cache
# key: phel-cache-${{ matrix.php }}-${{ hashFiles('composer.lock', 'phel-config.php') }}-${{ hashFiles('test/**/*.cljc', 'test/**/*.phel') }}
# restore-keys: |
# phel-cache-${{ matrix.php }}-${{ hashFiles('composer.lock', 'phel-config.php') }}-
# phel-cache-${{ matrix.php }}-
- name: Cache Phel compiled artifacts
uses: actions/cache@v4
with:
path: .phel/cache
key: phel-cache-${{ matrix.php }}-${{ hashFiles('composer.lock', 'phel-config.php') }}-${{ hashFiles('test/**/*.cljc', 'test/**/*.phel') }}
restore-keys: |
phel-cache-${{ matrix.php }}-${{ hashFiles('composer.lock', 'phel-config.php') }}-
phel-cache-${{ matrix.php }}-

# - name: Install dependencies
# run: composer install --no-interaction --no-ansi --no-progress
- name: Install dependencies
run: composer install --no-interaction --no-ansi --no-progress

# - name: Run tests
# run: composer test
- name: Run tests
run: composer test
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"require": {
"phel-lang/phel-lang": "^0.38"
"phel-lang/phel-lang": "^0.39"
},
"scripts": {
"test": "XDEBUG_MODE=off ./vendor/bin/phel test"
Expand Down
28 changes: 14 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/clojure/core_test/add_watch.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
:clj clojure.lang.ExceptionInfo
:cljr clojure.lang.ExceptionInfo
:lpy basilisp.lang.exception/ExceptionInfo
:phel Phel.Lang.ExInfoException) e
:phel Phel.Lang.ExceptionInfo) e
(let [data (ex-data e)]
(vswap! state conj data)))))]
(do-update a)
Expand Down
Loading