Skip to content

Support ruby-3.4 (latest) #53

Support ruby-3.4 (latest)

Support ruby-3.4 (latest) #53

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
actionlint:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
checks: write
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Run actionlint
uses: reviewdog/action-actionlint@534eb894142bcf31616e5436cbe4214641c58101 # v1.61.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
codeql:
permissions:
actions: read
checks: read
contents: read
security-events: write
uses: route06/actions/.github/workflows/codeql.yml@55b3a3db392059a08cee1d8c1b4b022e14c7ceda # v2.5.0
rspec:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- '3.4'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rspec
run: bundle exec rake spec
pushover:
name: pushover if failure
if: github.ref_name == github.event.repository.default_branch && failure()
needs: [actionlint, codeql, rspec]
uses: ./.github/workflows/pushover.yml
secrets:
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
PUSHOVER_USER_KEY: ${{ secrets.PUSHOVER_USER_KEY }}