From 37845c2868d0732b0546ed79f1db28d3f6d86bfc Mon Sep 17 00:00:00 2001 From: Piero Dotti Date: Wed, 17 Jan 2024 21:41:12 +0100 Subject: [PATCH] chore: test on ruby 3.3 and run tests on a schedule --- .github/workflows/test.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f0684f..a0e213d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,9 @@ name: Tests -on: [push, pull_request] +on: + push: + pull_request: + schedule: + - cron: '0 0 1 * *' jobs: test: strategy: @@ -7,7 +11,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' - ruby: ['3.0', 3.1, 3.2, head, truffleruby] + ruby: ['3.0', 3.1, 3.2, 3.3, head, truffleruby] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -15,4 +19,4 @@ jobs: with: ruby-version: ${{ matrix.ruby }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - - run: bundle exec rspec \ No newline at end of file + - run: bundle exec rspec