--no-message #10
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: Test | ||
on: [push, pull_request] | ||
permissions: | ||
contents: read | ||
jobs: | ||
test: | ||
name: Ruby ${{matrix.ruby}} on Ubuntu | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu | ||
- macos | ||
ruby: | ||
- '3.2' | ||
- '3.3' | ||
experimental: [false] | ||
Check failure on line 23 in .github/workflows/test.yaml GitHub Actions / TestInvalid workflow file
|
||
include: | ||
- os: ubuntu | ||
ruby: truffleruby | ||
experimental: true | ||
- os: ubuntu | ||
ruby: jruby | ||
experimental: true | ||
- os: ubuntu | ||
ruby: head | ||
experimental: true | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler-cache: true | ||
- name: Install dependencies | ||
run: bundle install | ||
- name: Setup database | ||
run: RACK_ENV='test' bundle exec ruby db/setup.rb | ||
- name: Run tests | ||
run: RACK_ENV='test' bundle exec rspec |