Add test for schedule across end of year #78
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
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
ruby: ['3.0', '3.1', '3.2', '3.3'] | |
name: test (Ruby ${{ matrix.ruby }} on ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Fetch up-to-date NOTAM fixtues for tests | |
run: bundle exec rake fixtures:fetch | |
- name: Run tests | |
run: SPEC_SCOPE=all bundle exec rake |