build(deps): bump rexml from 3.3.2 to 3.3.3 #45
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run rspec tests | |
on: | |
- pull_request | |
- push | |
- workflow_dispatch | |
jobs: | |
a11y: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
# env: | |
# BUNDLE_GEMFILE: utilities/Gemfile | |
strategy: | |
matrix: | |
# The files in /bjc-r/course w/o a .html extension | |
# These correspond to rspec tags for each test run. | |
course: | |
- bjc4nyc | |
- bjc4nyc.es | |
- sparks | |
- bjc4nyc_teacher | |
- sparks-teacher | |
suite: | |
- wcag20 | |
- wcag22 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
# ruby-version: 3.2.2 | |
bundler-cache: true | |
- name: a11y tests | |
run: bundle exec rspec utilities/specs --tag ${{ matrix.course }}_${{ matrix.suite }} | |
- name: summary | |
if: always() | |
run: ruby utilities/specs/spec_summary.rb |