From 00541fd78f580c2bc634f75997b218e2343b1739 Mon Sep 17 00:00:00 2001 From: Zakir Dzhamaliddinov Date: Mon, 8 Jul 2024 17:41:36 +0300 Subject: [PATCH 1/2] Add rubocop workflow to GitHub actions --- .github/workflows/rubocop.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/rubocop.yml diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml new file mode 100644 index 0000000..4bb6679 --- /dev/null +++ b/.github/workflows/rubocop.yml @@ -0,0 +1,24 @@ +name: Rubocop + +on: + push: + branches: + - main + pull_request: + +jobs: + rubocop: + runs-on: ubuntu-latest + name: Rubocop + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.2" + bundler-cache: true + - name: Install dependencies + run: bundle install + - name: Analyze code + run: bundle exec rubocop From 5230a84a342c583761375f8bc32a1d485a01bec1 Mon Sep 17 00:00:00 2001 From: Zakir Dzhamaliddinov Date: Mon, 8 Jul 2024 18:07:28 +0300 Subject: [PATCH 2/2] Add rspec workflow to GitHub actions --- .github/workflows/rspec.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/rspec.yml diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml new file mode 100644 index 0000000..ec5b499 --- /dev/null +++ b/.github/workflows/rspec.yml @@ -0,0 +1,32 @@ +name: RSpec + +on: + push: + branches: + - main + pull_request: + +jobs: + rspec: + runs-on: ubuntu-latest + name: RSpec + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.2" + bundler-cache: true + - name: Install dependencies + run: bundle install + - name: Run tests + env: + RAILS_ENV: test + run: bundle exec rspec --format documentation + - name: Upload coverage results + uses: actions/upload-artifact@master + if: always() + with: + name: coverage-report-${{ github.run_id }}-ubuntu-latest-ruby-3.2 + path: coverage