-
Notifications
You must be signed in to change notification settings - Fork 35
36 lines (32 loc) · 900 Bytes
/
code-style.yml
File metadata and controls
36 lines (32 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Code Style
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
cs:
if: github.event_name != 'schedule'
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run CS
uses: shopware/github-actions/extension-verifier@main
with:
action: format
check:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
version-selection: [ 'lowest', 'highest']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Check
uses: shopware/github-actions/extension-verifier@main
with:
action: check
check-against: ${{ matrix.version-selection }}