Skip to content

Update README.md

Update README.md #12

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- "*"
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: [3.1.3, 3.2.1, 3.3.0]
bridgetown_version: [1.3.4]
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
# Has to be top level to cache properly
env:
BUNDLE_JOBS: 3
BUNDLE_PATH: "vendor/bundle"
BRIDGETOWN_VERSION: ${{ matrix.bridgetown_version }}
steps:
- uses: actions/checkout@master
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: Test with Rake
run: script/cibuild