Update README for packaging changes and general better editing #52
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
name: Tests | |
runs-on: macos-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: install gems in packaging dir | |
uses: ruby/setup-ruby@v1 | |
with: | |
working-directory: packaging | |
bundler-cache: true | |
- name: Print out Bundler environment | |
run: bundle exec gem env | |
- name: Run tests | |
run: bundle exec rake test |