Skip to content

Commit

Permalink
fix: test with ruby 3.3.0 and run tests on a schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
ProGM committed Jan 17, 2024
1 parent ee2c704 commit 98dedec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
name: Tests
on: [push, pull_request]
on:
push:
pull_request:
schedule:
- cron: '0 0 1 * *'
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [2.7, '3.0', 3.1, 3.2, head, truffleruby]
ruby: [2.7, '3.0', 3.1, 3.2, 3.3, head, truffleruby]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 98dedec

Please sign in to comment.