From 594743be9f10fdb158801987540ba036410f4325 Mon Sep 17 00:00:00 2001 From: mihaileu <54336101+mihaileu@users.noreply.github.com> Date: Tue, 21 Dec 2021 14:32:07 +0200 Subject: [PATCH] Create lint.yml add php-cs-fixer github action config file --- .github/workflows/lint.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..c09b1ba2 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,10 @@ +on: [push, pull_request] +name: Main +jobs: + php-cs-fixer: + name: PHP-CS-Fixer + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: PHP-CS-Fixer + uses: docker://oskarstark/php-cs-fixer-ga