diff options
| author | 2025-11-04 23:31:01 -0800 | |
|---|---|---|
| committer | 2025-11-04 23:31:01 -0800 | |
| commit | 96a007eecea9b67ba06d01c8fcdd9c09fc4b43e9 (patch) | |
| tree | 5f691a3f3ec2faa0fb92b3394108cb4c63fccac5 /.github/workflows | |
| download | lezer-96a007eecea9b67ba06d01c8fcdd9c09fc4b43e9.tar.gz lezer-96a007eecea9b67ba06d01c8fcdd9c09fc4b43e9.zip | |
Initial commit
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..9d5feee --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +on: [push] + +name: CI + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Install PHP + uses: shivammathur/setup-php@v2 + with: + php-version: 8.3 + coverage: none + - name: Install dependencies + run: composer update --no-interaction --no-ansi --no-progress + - name: Run phel tests + run: vendor/bin/phel test |
