From 614101adbdcc212295e2020f3c25272e3f25c9ef Mon Sep 17 00:00:00 2001 From: Mina Slater Date: Wed, 8 May 2024 16:26:16 -0400 Subject: [PATCH] add GHA to run Standard --- .github/workflows/standardrb.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/standardrb.yml diff --git a/.github/workflows/standardrb.yml b/.github/workflows/standardrb.yml new file mode 100644 index 00000000..72f75fd7 --- /dev/null +++ b/.github/workflows/standardrb.yml @@ -0,0 +1,18 @@ +name: Run Linter + +on: + push: + branches: "main" + pull_request: + branches: "*" + +jobs: + standardrb: + name: StandardRB + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + bundler-cache: true + - run: bundle exec standardrb --format github --parallel \ No newline at end of file