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 95b7e8a commit f6cfeabCopy full SHA for f6cfeab
.github/workflows/swift-autobuilder.yml
@@ -0,0 +1,25 @@
1
+name: "Swift: Run Autobuilder Tests"
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - "swift/xcode-autobuilder/**"
7
+ - "misc/bazel/**"
8
+ - "*.bazel*"
9
+ - .github/workflows/swift-autobuilder.yml
10
+ branches:
11
+ - main
12
13
+jobs:
14
+ integration-tests:
15
+ runs-on: macos-latest
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - uses: bazelbuild/setup-bazelisk@v2
19
+ - uses: actions/setup-python@v3
20
+ - name: Build the Xcode autobuilder
21
+ run: |
22
+ bazel build //swift/xcode-autobuilder
23
+ - name: Test the Xcode autobuilder
24
25
+ bazel test //swift/xcode-autobuilder/tests
0 commit comments