Skip to content

Commit 5c049c8

Browse files
committed
NULL COALESCING USING GITHUB ACTIONS OPERATORS!
1 parent 3e4709f commit 5c049c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/swift_package_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,11 +232,11 @@ jobs:
232232
strategy:
233233
fail-fast: false
234234
matrix:
235-
xcode_version: ${{ fromJson(inputs.ios_host_xcode_versions ?? inputs.macos_xcode_versions) }}
236-
os_version: ${{ fromJson(inputs.ios_host_versions ?? inputs.macos_versions) }}
237-
arch: ${{ fromJson(inputs.ios_host_archs ?? inputs.macos_archs) }}
235+
xcode_version: ${{ fromJson(inputs.ios_host_xcode_versions || inputs.macos_xcode_versions) }}
236+
os_version: ${{ fromJson(inputs.ios_host_versions || inputs.macos_versions) }}
237+
arch: ${{ fromJson(inputs.ios_host_archs || inputs.macos_archs) }}
238238
exclude:
239-
- ${{ fromJson(inputs.ios_host_exclude_xcode_versions ?? inputs.macos_exclude_xcode_versions) }}
239+
- ${{ fromJson(inputs.ios_host_exclude_xcode_versions || inputs.macos_exclude_xcode_versions) }}
240240
steps:
241241
- name: Checkout repository
242242
uses: actions/checkout@v4

0 commit comments

Comments
 (0)