Skip to content

Commit bd8fd79

Browse files
committed
run CI on all supported fasterer versions
1 parent e832a77 commit bd8fd79

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ jobs:
1212
strategy:
1313
matrix:
1414
ruby: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2']
15+
fasterer: ['~> 0.10.0', '~> 0.11.0', '< 1.0']
1516
fail-fast: false
1617
steps:
1718
- uses: actions/checkout@v3
19+
- name: use specific fasterer version
20+
run: echo "gem 'fasterer', '${{ matrix.fasterer }}'" > Gemfile.local
1821
- uses: ruby/setup-ruby@v1
1922
with:
2023
ruby-version: ${{ matrix.ruby }}

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
source 'https://rubygems.org'
22

33
gemspec
4+
local_gemfile = File.expand_path('Gemfile.local', __dir__)
5+
eval_gemfile local_gemfile if File.exist?(local_gemfile)

0 commit comments

Comments
 (0)