From 68cfdbf5ff336241a4933dc9336e067ca0df5f22 Mon Sep 17 00:00:00 2001 From: Indrajeet Patil Date: Fri, 17 Mar 2023 18:04:43 +0100 Subject: [PATCH] add check styling workflow https://github.com/easystats/easystats/issues/357 --- .github/workflows/check-styling.yaml | 11 +++++++++++ .github/workflows/styler.yaml | 12 ------------ 2 files changed, 11 insertions(+), 12 deletions(-) create mode 100644 .github/workflows/check-styling.yaml delete mode 100644 .github/workflows/styler.yaml diff --git a/.github/workflows/check-styling.yaml b/.github/workflows/check-styling.yaml new file mode 100644 index 000000000..b71d9ddab --- /dev/null +++ b/.github/workflows/check-styling.yaml @@ -0,0 +1,11 @@ +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +name: check-styling + +jobs: + check-styling: + uses: easystats/workflows/.github/workflows/check-styling.yaml@main diff --git a/.github/workflows/styler.yaml b/.github/workflows/styler.yaml deleted file mode 100644 index 4c461150f..000000000 --- a/.github/workflows/styler.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples -# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help -on: - pull_request: - branches: [main, master] - paths: ["**.[rR]", "**.[qrR]md", "**.[rR]markdown", "**.[rR]nw"] - -name: Style - -jobs: - styler: - uses: easystats/workflows/.github/workflows/styler.yaml@main