Skip to content

Commit

Permalink
feat: Add lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
octfx committed Oct 31, 2021
1 parent e62ee8e commit 9aff3f4
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/lint-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Lint Tests
on:
push:
branches: [ master, develop, feature/** ]
pull_request:
branches: [ master ]
jobs:
lint-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Installing PHP
uses: shivammathur/setup-php@master
with:
php-version: '7.4'
- name: Get Composer Cache Directory 2
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v2
id: actions-cache
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Cache PHP dependencies
uses: actions/cache@v2
id: vendor-cache
with:
path: vendor
key: ${{ runner.OS }}-build-${{ hashFiles('**/composer.lock') }}
- name: Composer install
if: steps.vendor-cache.outputs.cache-hit != 'true'
run: composer install --no-ansi --no-interaction --no-scripts --no-suggest --prefer-dist
- name: Run Test
run: composer run test

0 comments on commit 9aff3f4

Please sign in to comment.