Add daily workflow to keep an eye on Ruby head

This commit is contained in:
Xavier Noria 2022-09-03 14:13:38 +02:00
parent 3d36b2561c
commit faf3c744a3
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
name: "Keep an eye on Ruby HEAD"
on:
workflow_dispatch:
schedule:
- cron: "11 9 * * *"
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
ruby-version:
- "head"
runs-on: ${{ matrix.os }}
steps:
- uses: "actions/checkout@v3"
- uses: "ruby/setup-ruby@v1"
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: "bundle exec rake"