File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 8
8
echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
9
9
echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
10
10
echo "🔎 The name of branch is ${{ github.ref }} and repository is ${{ github.repository }}."
11
- - name : Check out repository code
11
+ - name : Checkout
12
12
uses : actions/checkout@v3
13
13
- run : |
14
14
echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
19
19
- name : Run tests
20
20
run : |
21
21
cd ${{ github.workspace }}/tests/install && ${{ github.workspace }}/tests/run-test-install.sh -c
22
- - run : echo "🍏 This job's status is ${{ job.status }}."
22
+ - run : echo "🍏 This job's status is ${{ job.status }}."
23
+ lint :
24
+ runs-on : ubuntu-latest
25
+ steps :
26
+ - name : Checkout
27
+ uses : actions/checkout@v3
28
+ - name : lint
29
+ uses :
luke142367/[email protected]
30
+ with :
31
+ target : src/build/php/Dockerfile
32
+ env :
33
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments