Add support for secondly, minutely, and hourly frequencies #25
Workflow file for this run
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
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: | |
- 3.0.0 | |
- 3.1.0 | |
- 3.2.0 | |
- 3.3.0 | |
name: Ruby ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: 'Update gem command' | |
run: yes | gem update --system --force | |
- name: 'Update Bundler' | |
run: gem install bundler | |
- uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- run: bundle install | |
- name: 'Ensure appraisals are up to date' | |
run: appraisal clean && appraisal generate && git diff --exit-code | |
- run: appraisal install | |
- run: appraisal rake |