summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorZhineng Li <[email protected]>2026-01-21 11:06:05 +0800
committerZhineng Li <[email protected]>2026-01-21 11:06:25 +0800
commit8d51b4d74ca3d5a576d9e29394431eba6be75144 (patch)
tree5a135ec8ad5697dfb70dac158af3365f0a614a55 /.github/workflows
parenta5de9abfebcde99547882e4dd6142ddf096606ef (diff)
downloadvehicle-license-china-8d51b4d74ca3d5a576d9e29394431eba6be75144.tar.gz
vehicle-license-china-8d51b4d74ca3d5a576d9e29394431eba6be75144.zip
remove github test workflow
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 94269f5..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Tests
-
-on:
- push:
-
-jobs:
- tests:
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- php: ['8.4']
- dependency-version: [prefer-lowest, prefer-stable]
-
- name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
-
- steps:
- - name: Checkout
- uses: actions/checkout@v4
-
- - name: Setup PHP
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php }}
- tools: composer:v2
- coverage: none
-
- - name: Install Dependencies
- run: composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
-
- - name: Run Tests
- run: ./vendor/bin/phpunit