CI againt for Ruby 3.3 #254
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: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
schedule: | |
- cron: "0 0 * * 5" # JST 9:00 (Fri) | |
jobs: | |
test_main: | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: | |
- "2.3" | |
- "2.4" | |
- "2.5" | |
- "2.6" | |
- "2.7" | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
- "3.3" | |
rubyopt: | |
- "" | |
- "--jit" | |
- "--yjit" | |
include: | |
# FIXME: Workaround for bundle installing error | |
- ruby: "2.7" | |
bundler: "2.4.21" | |
exclude: | |
# --jit is available since MRI 2.6 | |
- ruby: "2.3" | |
rubyopt: "--jit" | |
- ruby: "2.4" | |
rubyopt: "--jit" | |
- ruby: "2.5" | |
rubyopt: "--jit" | |
# --yjit is available since MRI 3.1 | |
- ruby: "2.3" | |
rubyopt: "--yjit" | |
- ruby: "2.4" | |
rubyopt: "--yjit" | |
- ruby: "2.5" | |
rubyopt: "--yjit" | |
- ruby: "2.6" | |
rubyopt: "--yjit" | |
- ruby: "2.7" | |
rubyopt: "--yjit" | |
- ruby: "3.0" | |
rubyopt: "--yjit" | |
uses: ./.github/workflows/test_main.yml | |
with: | |
ruby: ${{ matrix.ruby }} | |
rubyopt: ${{ matrix.rubyopt }} | |
bundler: ${{ matrix.bundler }} | |
secrets: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
notify: | |
needs: | |
- test_main | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slack Notification (success) | |
uses: lazy-actions/slatify@master | |
if: always() | |
continue-on-error: true | |
with: | |
job_name: '*notify*' | |
type: ${{ job.status }} | |
icon_emoji: ":octocat:" | |
url: ${{ secrets.SLACK_WEBHOOK }} | |
token: ${{ secrets.GITHUB_TOKEN }} |