Update standard requirement from ~> 0.13.0 to ~> 1.40.0 #317
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: Build | |
env: | |
BREATHE_API_KEY: "some-api-key" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
- name: Set up cache | |
uses: actions/cache@preview | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gem-${{ hashFiles('**/breathe.gemspec') }} | |
restore-keys: | | |
${{ runner.os }}-gem- | |
- name: Build and test with Rake | |
run: | | |
sudo apt-get update | |
sudo apt-get install sqlite3 libsqlite3-dev | |
gem install bundler | |
bundle install --jobs 4 --retry 3 --path ./vendor/bundle | |
bundle exec rake |