From 3b174ade2f6a3d5eadda3071b287d60e3032c092 Mon Sep 17 00:00:00 2001 From: Zakir Dzhamaliddinov Date: Mon, 8 Jul 2024 18:07:28 +0300 Subject: [PATCH] Add rspec workflow to GitHub actions --- .github/workflows/rspec.yml | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 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..f4fda7e --- /dev/null +++ b/.github/workflows/rspec.yml @@ -0,0 +1,38 @@ +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 spec log + uses: actions/upload-artifact@master + if: always() + with: + name: spec-${{ github.run_id }}-ubuntu-latest-ruby-3.2.log + path: spec.log + - 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