From f9ab0cc6d5d642765fc09fa2d74677630726ffcf Mon Sep 17 00:00:00 2001 From: Seungyeop Yeom Date: Sat, 15 Nov 2025 21:13:18 +0900 Subject: [PATCH] Swap the build and test steps in the CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fcfe70..b91916a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,10 @@ jobs: - uses: actions/checkout@v4 - name: Select Xcode run: sudo xcode-select -s /Applications/Xcode_26.0.1.app - - name: Run Swift Tests - run: make test - name: Build for All Platforms run: make build-all + - name: Run Swift Tests + run: make test linux: runs-on: ubuntu-latest