From 5e9fd4b9fccfae620ba10290b15766f1ab46b0f6 Mon Sep 17 00:00:00 2001 From: akumari Date: Thu, 30 May 2024 13:17:11 +0530 Subject: [PATCH] Add GHA workflow --- .github/workflows/ci_test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci_test.yml diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml new file mode 100644 index 0000000..c41b586 --- /dev/null +++ b/.github/workflows/ci_test.yml @@ -0,0 +1,18 @@ +name: CI + +on: + pull_request: + push: + branches: + - "master" + +concurrency: + group: ${{ github.ref_name }}-${{ github.workflow }} + cancel-in-progress: true + +jobs: + rubocop: + name: Rubocop + uses: theforeman/actions/.github/workflows/rubocop.yml@v0 + with: + command: bundle exec rubocop --parallel --format github