Skip to content

Allow administering gem typo exceptions thru admin interface (#4131) #4288

Allow administering gem typo exceptions thru admin interface (#4131)

Allow administering gem typo exceptions thru admin interface (#4131) #4288

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
# This is umbrella job for all tests needed to pass to make it simpler
# to maintain GitHub Actions status required checks since job names and
# amount change over the time and it is easier to maintian having just
# this umbrella check set as required.
status_check:
name: All required tests passing check
needs: [rails]
runs-on: ubuntu-22.04
if: always()
steps:
- run: /bin/${{ (needs.rails.result == 'success' || needs.rails.result == 'skipped') }}
rails:
strategy:
fail-fast: false
matrix:
rubygems:
- name: locked
version: "3.4.20"
- name: latest
version: latest
ruby_version: ["3.2.2"]
tests:
- name: general
command: test
- name: system
command: test:system
name: Rails tests ${{ matrix.tests.name }} (RubyGems ${{ matrix.rubygems.name }})
runs-on: ubuntu-22.04
env:
RUBYGEMS_VERSION: ${{ matrix.rubygems.version }}
# Fail hard when Toxiproxy is not running to ensure all tests (even Toxiproxy optional ones) are passing
REQUIRE_TOXIPROXY: true
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Setup rubygems.org
uses: ./.github/actions/setup-rubygems.org
with:
ruby-version: ${{ matrix.ruby_version }}
rubygems-version: ${{ matrix.rubygems.version }}
- name: Tests ${{ matrix.tests.name }}
id: test-all
run: bin/rails ${{ matrix.tests.command }}
- name: Save capybara screenshots
if: ${{ failure() && steps.test-all.outcome == 'failure' }}
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: capybara-screenshots
path: tmp/capybara
if-no-files-found: ignore
- name: Upload coverage to Codecov
if: matrix.rubygems.name == 'locked' && (success() || failure())
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4