We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 906f2b3 commit 624f1ddCopy full SHA for 624f1dd
.github/workflows/ci.yml
@@ -1,11 +1,16 @@
1
name: CI
2
+
3
on: [push]
4
5
jobs:
6
build-test:
- runs-on: ubuntu-latest
- steps:
7
- - uses: actions/checkout@v3
8
- - run: echo "The ${{ github.repository }} repository has been cloned to the runner."
9
- - uses: php-action/composer@v6
10
- - run: echo "Composer dependancies have been installed"
11
- - run: vendor/bin/phpunit
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - run: echo "The ${{ github.repository }} repository has been cloned to the runner."
12
+ - uses: php-actions/composer@v6
13
+ - run: echo "Composer dependencies have been installed"
14
+ - run: vendor/bin/phpunit
15
16
0 commit comments