mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Use ${{}}
for if statement
This commit is contained in:
parent
408605aae7
commit
fe77a03392
2 changed files with 2 additions and 2 deletions
2
.github/workflows/yjit-macos.yml
vendored
2
.github/workflows/yjit-macos.yml
vendored
|
@ -42,7 +42,7 @@ jobs:
|
|||
- run: make $JOBS incs
|
||||
- run: make $JOBS
|
||||
- run: make leaked-globals
|
||||
if: matrix.test_task == 'check'
|
||||
if: ${{ matrix.test_task == 'check' }}
|
||||
- run: make prepare-gems
|
||||
if: ${{ matrix.test_task == 'check' }}
|
||||
- run: make $JOBS -s ${{ matrix.test_task }} RUN_OPTS="$RUN_OPTS"
|
||||
|
|
2
.github/workflows/yjit-ubuntu.yml
vendored
2
.github/workflows/yjit-ubuntu.yml
vendored
|
@ -60,7 +60,7 @@ jobs:
|
|||
- run: make $JOBS incs
|
||||
- run: make $JOBS
|
||||
- run: make leaked-globals
|
||||
if: matrix.test_task == 'check'
|
||||
if: ${{ matrix.test_task == 'check' }}
|
||||
- run: make prepare-gems
|
||||
if: ${{ matrix.test_task == 'check' }}
|
||||
- name: Create dummy files in build dir
|
||||
|
|
Loading…
Reference in a new issue