diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2021-08-02 11:39:38 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2021-08-02 12:39:50 +0900 |
| commit | 8b466ea5fc00dcd400a57cc03db4537f0cb8fc81 (patch) | |
| tree | 599dd3e18fbe79079f16efc1fae47fd89340e8c3 /.github/workflows/compilers.yml | |
| parent | 7f4e86804d426d79807cc038fe4444f7c65f5c4a (diff) | |
Use `${{}}` for if statement
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4700
Diffstat (limited to '.github/workflows/compilers.yml')
| -rw-r--r-- | .github/workflows/compilers.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index ea19c016fa..f267ee26ae 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -189,15 +189,15 @@ jobs: - run: $make leaked-globals - run: $make test - run: $make install - if: "matrix.entry.name == '-O3'" + if: ${{ matrix.entry.name == '-O3' }} - run: /usr/local/bin/gem install --no-doc timezone tzinfo - if: "matrix.entry.name == '-O3'" + if: ${{ matrix.entry.name == '-O3' }} - run: $make test-tool - if: "matrix.entry.name == '-O3'" + if: ${{ matrix.entry.name == '-O3' }} - run: $make test-all TESTS='-- ruby -ext-' - if: "matrix.entry.name == '-O3'" + if: ${{ matrix.entry.name == '-O3' }} - run: $make test-spec - if: "matrix.entry.name == '-O3'" + if: ${{ matrix.entry.name == '-O3' }} - uses: k0kubun/action-slack@v2.0.0 with: @@ -211,7 +211,7 @@ jobs: } env: SLACK_WEBHOOK_URL: ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot - if: failure() && github.event_name == 'push' + if: ${{ failure() && github.event_name == 'push' }} defaults: run: |
