sinatra/.github/workflows/test.yml

37 lines
1.1 KiB
YAML
Raw Normal View History

2021-04-17 17:03:20 +00:00
name: Testing
on:
push:
branches:
- '**'
2021-04-17 17:03:20 +00:00
pull_request:
jobs:
test:
name: Test with Ruby-${{ matrix.ruby }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
2021-04-17 17:03:20 +00:00
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
# TODO: Add jruby if something like allow_failures will be implemented on Actions.
2022-01-04 10:19:35 +00:00
ruby: [2.6, 2.7, '3.0', 3.1]
2021-04-17 17:03:20 +00:00
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: sudo apt-get install -y pandoc nodejs pkg-config libxml2-dev libxslt-dev
- name: Run tests
run: ./.actions.sh
2021-05-07 22:00:46 +00:00
- uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
2021-05-07 22:20:24 +00:00
fields: repo,message,commit,author,ref,job,took # selectable (default: repo,message)
2021-05-07 22:00:46 +00:00
env:
2021-05-07 22:20:24 +00:00
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} # required
MATRIX_CONTEXT: ${{ toJson(matrix) }} # required
if: failure() && env.SLACK_WEBHOOK_URL