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 f71cae5 commit 0ea9caaCopy full SHA for 0ea9caa
.github/workflows/ci.yml
@@ -36,3 +36,16 @@ jobs:
36
submodules: recursive
37
- name: Test platform ${{ matrix.destination }}
38
run: set -o pipefail && xcodebuild -scheme SwiftTreeSitter -destination "${{ matrix.destination }}" test | xcbeautify
39
+
40
+ linux_test:
41
+ name: Test Linux
42
+ runs-on: ubuntu-latest
43
+ steps:
44
+ - name: Checkout
45
+ uses: actions/checkout@v4
46
+ - name: Install swiftly
47
+ run: curl -L https://swiftlang.github.io/swiftly/swiftly-install.sh | bash -s -- -y
48
+ - name: Install the latest Swift toolchain
49
+ run: swiftly install latest
50
+ - name: Test
51
+ run: swift test
0 commit comments