From 904f7480ddbc7d8c61fa6e35e49147af00747849 Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Fri, 18 Oct 2024 12:07:58 +1300 Subject: [PATCH] fix ci --- .github/workflows/ci.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6148de7..0b73a4f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,22 +1,22 @@ name: Unit Tests -# TODO: reenable when https://github.com/swift-actions/setup-swift/issues/683 is resolved. -# on: -# push: -# branches: [ main ] -# pull_request: -# branches: [ main ] +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] jobs: build: name: Swift ${{ matrix.swift }} on ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-13] + os: [ubuntu-latest, macos-15] swift: ["6.0"] runs-on: ${{ matrix.os }} steps: - - uses: swift-actions/setup-swift@v2 + - name: Setup Swift + uses: SwiftyLab/setup-swift@latest with: swift-version: ${{ matrix.swift }} - uses: actions/checkout@v4