From 160327b670e9d419f74d3065425cd6c693083e39 Mon Sep 17 00:00:00 2001 From: Petr Parolek Date: Fri, 4 Jun 2021 23:15:09 +0200 Subject: [PATCH 1/2] allow build on all branches --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6654f5a..03419a2 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,7 +6,7 @@ on: - ".docs/**" push: branches: - - "master" + - "*" schedule: - cron: "0 8 * * 1" # At 08:00 on Monday From fa92e30a886a51570ec04c19c59fd7a817224c0f Mon Sep 17 00:00:00 2001 From: Petr Parolek Date: Sat, 5 Jun 2021 19:44:31 +0200 Subject: [PATCH 2/2] CS fixes --- .editorconfig | 2 +- .github/workflows/main.yaml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.editorconfig b/.editorconfig index e147490..3faf149 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,6 +11,6 @@ indent_style = tab indent_size = tab tab_width = 4 -[{*.json,*.yaml,*.yml,*.md}] +[{*.json, *.yaml, *.yml, *.md}] indent_style = space indent_size = 2 diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 03419a2..7799188 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -23,8 +23,8 @@ jobs: strategy: matrix: - php-version: ["7.4"] - operating-system: ["ubuntu-latest"] + php-version: [ "7.4" ] + operating-system: [ "ubuntu-latest" ] fail-fast: false steps: @@ -82,8 +82,8 @@ jobs: strategy: matrix: - php-version: ["7.4"] - operating-system: ["ubuntu-latest"] + php-version: [ "7.4" ] + operating-system: [ "ubuntu-latest" ] fail-fast: false steps: @@ -138,8 +138,8 @@ jobs: strategy: matrix: - php-version: ["7.2", "7.3", "7.4"] - operating-system: ["ubuntu-latest"] + php-version: [ "7.2", "7.3", "7.4" ] + operating-system: [ "ubuntu-latest" ] composer-args: [ "" ] include: - php-version: "7.2" @@ -207,8 +207,8 @@ jobs: strategy: matrix: - php-version: ["7.4"] - operating-system: ["ubuntu-latest"] + php-version: [ "7.4" ] + operating-system: [ "ubuntu-latest" ] fail-fast: false if: "github.event_name == 'push'"