We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 060939f commit 7cc5443Copy full SHA for 7cc5443
.github/workflows/ubuntu.yml
@@ -17,6 +17,10 @@ jobs:
17
container: swift:${{ matrix.swift_version }}-jammy
18
steps:
19
- uses: actions/checkout@v4
20
+ - name: Swift version
21
+ run: |
22
+ which swift
23
+ swift --version
24
- name: Building and running tests in debug mode with coverage
25
run: |
26
swift test \
Package.swift
@@ -27,6 +27,8 @@ let swiftBinURL = URL(fileURLWithPath: swiftBinPath)
27
let SDKPath = swiftBinURL.deletingLastPathComponent().deletingLastPathComponent().path
28
let includePath = SDKPath.appending("/lib/swift_static")
29
30
+print(Context.environment)
31
+
32
let package = Package(
33
name: "OpenGraph",
34
platforms: [
0 commit comments