From 542c4121f7aba7859b465700e1d7c63061471d43 Mon Sep 17 00:00:00 2001 From: Matt <85322+mattmassicotte@users.noreply.github.com> Date: Fri, 1 Dec 2023 09:13:53 -0500 Subject: [PATCH] Expand linux tests --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ac98a9..d5b6af8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,19 @@ jobs: run: set -o pipefail && xcodebuild -scheme LanguageServerProtocol -destination "${{ matrix.destination }}" test | xcpretty linux_test: + name: Test Linux 5.8.1 + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install swiftly + run: curl -L https://swift-server.github.io/swiftly/swiftly-install.sh | bash -s -- -y + - name: Install the latest Swift toolchain + run: swiftly install 5.8.1 + - name: Test + run: swift test + + linux_latest_test: name: Test Linux runs-on: ubuntu-latest steps: