From fa72bee697960332347e09b7b290f71385d2a63d Mon Sep 17 00:00:00 2001 From: roxblnfk Date: Thu, 24 Oct 2024 21:23:31 +0400 Subject: [PATCH] Apply code style and add CI --- .github/workflows/cs-fix.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/cs-fix.yml diff --git a/.github/workflows/cs-fix.yml b/.github/workflows/cs-fix.yml new file mode 100644 index 0000000..db5860c --- /dev/null +++ b/.github/workflows/cs-fix.yml @@ -0,0 +1,16 @@ +--- + +on: # yamllint disable-line rule:truthy + push: + branches: + - '*' + +name: Fix Code Style + +jobs: + cs-fix: + permissions: + contents: write + uses: spiral/gh-actions/.github/workflows/cs-fix.yml@master + +...