From 941f3280dc7b2810befe7fd0c6e8e7a0c21751eb Mon Sep 17 00:00:00 2001 From: Adam Fowler Date: Fri, 7 Oct 2022 17:25:34 +0100 Subject: [PATCH] Test against swift 5.5, 5.6, 5.7 (#10) * Test against swift 5.5,5.6,5.7 * Update swift.yml --- .github/workflows/swift.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index fe62442..97fe0fe 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -1,6 +1,15 @@ name: CI -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: + branches: + - main + release: + types: [published] + workflow_dispatch: jobs: macOS: @@ -18,7 +27,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - image: ['swift:5.1', 'swift:5.2', 'swift:5.3', 'swift:5.4'] + image: ['swift:5.1', 'swift:5.4', 'swift:5.5', 'swift:5.6', 'swift:5.7'] container: image: ${{ matrix.image }} steps: