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.
1 parent 3301ef5 commit bb4b65aCopy full SHA for bb4b65a
.github/workflows/build.yml
@@ -22,7 +22,7 @@ jobs:
22
with:
23
swift-version: ${{ matrix.swift }}
24
- name: Test and publish code coverage to Code Climate
25
- if: ${{os}} == "macos-latest"
+ if: ${{ matrix.os }} == "macos-latest"
26
uses: paulofaria/codeclimate-action@master
27
env:
28
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}}
@@ -31,7 +31,7 @@ jobs:
31
coverageCommand: swift test --enable-code-coverage
32
coverageLocations: ${{ env.codecov_path }}:lcov-json
33
- name: Test
34
- if: ${{os}} != "macos-latest"
+ if: ${{ matrix.os }} != "macos-latest"
35
run: swift test
36
37
0 commit comments