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 eefe457 commit 45fc1d5Copy full SHA for 45fc1d5
.github/workflows/swift-integration-tests.yml
@@ -30,6 +30,14 @@ jobs:
30
- name: Build Swift extractor
31
run: |
32
bazel run //swift:create-extractor-pack
33
+ - name: Get Swift version
34
+ id: get_swift_version
35
+ run: |
36
+ VERSION=$(bazel run //swift/extractor -- --version | sed -ne 's/.*version \(\S*\).*/\1/p')
37
+ echo "::set-output name=version::$VERSION"
38
+ - uses: swift-actions/setup-swift@v1
39
+ with:
40
+ swift-version: "${{steps.get_swift_version.outputs.version}}"
41
- name: Run integration tests
42
43
python integration-tests/runner.py
0 commit comments