chore: Bump actions/deploy-pages from 3 to 4 #163
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 + Test | |
on: | |
push: | |
branches: | |
- "**" # matches every branch | |
- "!master" # excludes master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: | |
- '2.6' | |
- '2.7' | |
- '3.0' | |
- '3.1' | |
- '3.2' | |
- ruby-head | |
- jruby-head | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
# runs 'bundle install' and caches installed gems automatically | |
bundler-cache: true | |
- name: Setup Graphviz | |
uses: ts-graphviz/setup-graphviz@v1 | |
- name: Deps | |
run: bundle install --jobs 4 --retry 3 | |
- name: Run tests | |
run: bundle exec rake test |