diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-02-10 11:39:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-10 11:39:29 +0100 |
commit | df4ca949f533513a9ea90afa363c0bd0ee74c134 (patch) | |
tree | 94b09d9b6eb1158fbc0f154369c943a3aa17a1bd /.github | |
parent | a3c80b92c4a3b0985b5ab33188d89ccbcc7be876 (diff) | |
parent | 64665c98e1482c6702a8382200811acfc0cbdb0b (diff) | |
download | nextcloud-server-df4ca949f533513a9ea90afa363c0bd0ee74c134.tar.gz nextcloud-server-df4ca949f533513a9ea90afa363c0bd0ee74c134.zip |
Merge pull request #19384 from nextcloud/enh/actions/lint
Lint on github actions
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/lint.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000000..ca027676da0 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,20 @@ +name: Lint +on: pull_request + +jobs: + php-linters: + runs-on: ubuntu-latest + strategy: + matrix: + php-versions: ['7.2', '7.3', 7.4] + name: php${{ matrix.php-versions }} lint + steps: + - name: Checkout + uses: actions/checkout@master + - name: Set up php${{ matrix.php-versions }} + uses: shivammathur/setup-php@master + with: + php-version: ${{ matrix.php-versions }} + coverage: none + - name: Lint + run: composer run lint |