From 1ab86d1867bf4082d5d6ace2213e363963752511 Mon Sep 17 00:00:00 2001 From: AJ Jordan Date: Wed, 25 Sep 2024 18:03:57 -0400 Subject: [PATCH] Add lint GitHub Action --- .github/workflows/lint.yml | 21 +++++++++++++++++++++ lint.sh | 0 2 files changed, 21 insertions(+) create mode 100644 .github/workflows/lint.yml mode change 100644 => 100755 lint.sh diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..4c02600 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,21 @@ +--- +name: build-ublue-custom +on: + pull_request: + branches: + - main + push: + branches: + - main + +jobs: + build_push: + name: Lint + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Lint + run: | + ./lint.sh diff --git a/lint.sh b/lint.sh old mode 100644 new mode 100755