We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e74d4b commit 1ca07aeCopy full SHA for 1ca07ae
.github/workflows/ruby.yml
@@ -9,9 +9,13 @@ name: Tests
9
10
on:
11
push:
12
- branches: [ main ]
+ branches:
13
+ - main
14
+ - 'lazy-loading-beta'
15
pull_request:
16
17
18
19
workflow_dispatch:
20
21
permissions:
@@ -59,3 +63,18 @@ jobs:
59
63
60
64
- name: Run tests
61
65
run: bundle exec rake test
66
+ test-with-lazy-loading:
67
+ name: Ruby 3.2 with lazy loading
68
+ runs-on: ubuntu-latest
69
+ env:
70
+ BUNDLE_WITHOUT: benchmark
71
+ steps:
72
+ - uses: actions/checkout@v6
73
+ - uses: ruby/setup-ruby@v1
74
+ with:
75
+ ruby-version: '3.2'
76
+ bundler-cache: true
77
+
78
+ - name: Run tests with lazy load enabled
79
+ run: FAKER_LAZY_LOAD=1 bundle exec rake test
80
0 commit comments