From a7b09b9782f20cacdfbfc3133ff6f7798fe6f4e0 Mon Sep 17 00:00:00 2001 From: Zakir Date: Mon, 8 Jul 2024 19:57:07 +0300 Subject: [PATCH] Configure GitHub CI integration (#13) --- .github/workflows/rspec.yml | 32 ++++++++++++++++++++++++++++++++ .github/workflows/rubocop.yml | 24 ++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 .github/workflows/rspec.yml create mode 100644 .github/workflows/rubocop.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 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