From 1829a5e8ad930b82d41085dc5b923e3a03587304 Mon Sep 17 00:00:00 2001 From: suraj kashyap Date: Thu, 18 Jul 2024 15:16:46 +0530 Subject: [PATCH] pipline for pint. --- .github/workflows/linting_tests.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/linting_tests.yml diff --git a/.github/workflows/linting_tests.yml b/.github/workflows/linting_tests.yml new file mode 100644 index 000000000..5b3e95263 --- /dev/null +++ b/.github/workflows/linting_tests.yml @@ -0,0 +1,22 @@ +name: Linting Tests + +on: [push, pull_request] + +jobs: + linting_tests: + runs-on: ${{ matrix.operating-systems }} + + strategy: + matrix: + operating-systems: [ubuntu-latest] + php-versions: ['8.1'] + + name: PHP ${{ matrix.php-versions }} test on ${{ matrix.operating-systems }} + + steps: + - uses: actions/checkout@v1 + - name: Running Pint Test + uses: aglipanci/laravel-pint-action@2.0.0 + with: + testMode: true + verboseMode: true