Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Bump Ubuntu action runner to 24.04 (#231) #230

Bump Ubuntu action runner to 24.04 (#231)

Bump Ubuntu action runner to 24.04 (#231) #230

# https://docs.github.com/ja/actions/reference/workflow-syntax-for-github-actions
name: Test
on:
push:
branches:
- main
paths:
- '.github/workflows/test_behaviors.yml'
- 'lib/**'
- 'test/**'
- 'spec/**'
- '.rspec'
- '**.gemspec'
- 'Gemfile'
- 'Rakefile'
pull_request:
paths:
- '.github/workflows/test_behaviors.yml'
- 'lib/**'
- 'test/**'
- 'spec/**'
- '.rspec'
- '**.gemspec'
- 'Gemfile'
- 'Rakefile'
jobs:
test_behaviors:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [head, '3.3', '3.2']
runs-on: ${{ matrix.os }}
steps:
- name: Install libyaml
if: startsWith(matrix.os, 'ubuntu-') && matrix.ruby == '3.2'
run: sudo apt-get install --no-install-recommends --assume-yes libyaml-dev
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
env:
BUNDLE_WITHOUT: development
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake test_behaviors --suppress-backtrace='\/bundle'
env:
BUNDLE_WITHOUT: development