Skip to content

Commit bb4b65a

Browse files
committed
Fix error in YML
1 parent 3301ef5 commit bb4b65a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
swift-version: ${{ matrix.swift }}
2424
- name: Test and publish code coverage to Code Climate
25-
if: ${{os}} == "macos-latest"
25+
if: ${{ matrix.os }} == "macos-latest"
2626
uses: paulofaria/codeclimate-action@master
2727
env:
2828
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
@@ -31,7 +31,7 @@ jobs:
3131
coverageCommand: swift test --enable-code-coverage
3232
coverageLocations: ${{ env.codecov_path }}:lcov-json
3333
- name: Test
34-
if: ${{os}} != "macos-latest"
34+
if: ${{ matrix.os }} != "macos-latest"
3535
run: swift test
3636

3737

0 commit comments

Comments
 (0)