Keep an eye on TruffleRuby HEAD #15
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: "Keep an eye on TruffleRuby HEAD" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "10 10 * * *" | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- "ubuntu-latest" | |
- "macos-latest" | |
ruby-version: | |
- "truffleruby-head" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: "actions/checkout@v4" | |
- uses: "ruby/setup-ruby@v1" | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- run: "bundle exec rake" |