We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 52e1c6e + 5fe342c commit b975b05Copy full SHA for b975b05
1 file changed
.github/workflows/ruby.yml
@@ -32,6 +32,8 @@ jobs:
32
job: rubocop validate test_doc build test_generate_stdlib raap
33
- ruby: "4.0"
34
job: typecheck_test
35
+ - ruby: asan-release
36
+ job: test
37
env:
38
RANDOMIZE_STDLIB_TEST_ORDER: "true"
39
steps:
@@ -66,6 +68,10 @@ jobs:
66
68
- name: bin/setup
67
69
run: |
70
bin/setup
71
+ - name: Configure ASAN options
72
+ if: ${{ contains(matrix.ruby, 'asan') }}
73
+ run: |
74
+ echo "ASAN_OPTIONS=abort_on_error=1" >> $GITHUB_ENV
75
- name: Run test
76
77
bundle exec rake ${{ matrix.job }}
0 commit comments