This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
Use Rack 3 PR to enable forked gem #14
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: Testing | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
test: | |
name: ${{ matrix.ruby }} (Rack ${{ matrix.rack }}, Puma ${{ matrix.puma }}, Tilt ${{ matrix.tilt }}) | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
actions: read # to list jobs for workflow run (8398a7/action-slack) | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
puma: | |
- stable | |
rack: | |
- head | |
tilt: | |
- stable | |
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' | |
ruby: ['3.2'] | |
include: | |
- { ruby: 3.2, rack: head, puma: stable, tilt: stable, allow-failure: false } | |
env: | |
rack: ${{ matrix.rack }} | |
puma: ${{ matrix.puma }} | |
tilt: ${{ matrix.tilt }} | |
steps: | |
- name: Install dependencies | |
run: | | |
sudo apt-get install --yes \ | |
pandoc \ | |
nodejs \ | |
pkg-config \ | |
libxml2-dev \ | |
libxslt-dev \ | |
libyaml-dev | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
continue-on-error: ${{ matrix.allow-failure || false }} | |
id: setup-ruby | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
# Update rubygems due to https://github.com/rubygems/rubygems/pull/6490 | |
rubygems: ${{ matrix.ruby == '3.0' && 'latest' || 'default' }} | |
- name: Run sinatra tests | |
continue-on-error: ${{ matrix.allow-failure || false }} | |
id: tests | |
run: bundle exec rake | |
- name: Run sinatra-contrib tests | |
continue-on-error: ${{ matrix.allow-failure || false }} | |
id: contrib-tests | |
working-directory: sinatra-contrib | |
run: | | |
bundle install --jobs=3 --retry=3 | |
bundle exec rake | |
- name: Run rack-protection tests | |
continue-on-error: ${{ matrix.allow-failure || false }} | |
id: protection-tests | |
working-directory: rack-protection | |
run: | | |
bundle install --jobs=3 --retry=3 | |
bundle exec rake | |
# because continue-on-error marks the steps as pass even if they fail | |
- name: "setup-ruby (bundle install) outcome: ${{ steps.setup-ruby.outcome }}" | |
run: "" | |
- name: "sinatra tests outcome: ${{ steps.tests.outcome }}" | |
run: "" | |
- name: "sinatra-contrib tests outcome: ${{ steps.contrib-tests.outcome }}" | |
run: "" | |
- name: "rack-protection tests outcome: ${{ steps.protection-tests.outcome }}" | |
run: "" | |
- uses: zzak/action-discord@v6 | |
if: failure() && github.ref_name == 'main' | |
continue-on-error: true # always allow failure | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} |