Skip to content

Commit

Permalink
Add daily test runs on Ruby nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfication committed Jan 9, 2024
1 parent b14e5ef commit 25a781f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ruby-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Ruby Nightly

# on:
# schedule:
# # Checks daily
# - cron: '0 0 * * *'
on: push

jobs:
TestsOnNightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby-head
bundler-cache: true
- run: bundle exec rspec

0 comments on commit 25a781f

Please sign in to comment.