From f71cae52d852cc3812f2ad9257632375d4262158 Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Tue, 19 Nov 2024 07:40:33 -0500 Subject: [PATCH] Fix whitespace issue --- .github/workflows/ci.yml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 780619e..11cf6e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ on: jobs: test: name: Test - timeout-minutes: 30 + timeout-minutes: 30 runs-on: macOS-15 env: DEVELOPER_DIR: /Applications/Xcode_16.1.app @@ -29,7 +29,6 @@ jobs: - "platform=tvOS Simulator,name=Apple TV" - "platform=watchOS Simulator,name=Apple Watch Series 10 (42mm)" - "platform=visionOS Simulator,name=Apple Vision Pro" - steps: - name: Checkout uses: actions/checkout@v4 @@ -37,16 +36,3 @@ jobs: submodules: recursive - name: Test platform ${{ matrix.destination }} run: set -o pipefail && xcodebuild -scheme SwiftTreeSitter -destination "${{ matrix.destination }}" test | xcbeautify - - linux_test: - name: Test Linux - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Install swiftly - run: curl -L https://swiftlang.github.io/swiftly/swiftly-install.sh | bash -s -- -y - - name: Install the latest Swift toolchain - run: swiftly install latest - - name: Test - run: swift test