More accurate rising, transit and setting times #239
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
name: Ruby | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Ruby ${{ matrix.ruby }} | |
strategy: | |
matrix: | |
ruby: | |
- 3.0.6 | |
- 3.1.4 | |
- 3.2.3 | |
- 3.3.0 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Set up Ruby version | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Install bundler | |
run: gem install bundler | |
- name: Install gems | |
run: bundle install | |
- name: Run tests | |
run: bundle exec rake | |
- name: Check code guidelines | |
run: bundle exec standardrb |