Skip to content

Commit

Permalink
Change commands depending on execution environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Econa77 committed Aug 13, 2022
1 parent cf72a21 commit 6235703
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,16 @@ jobs:
- xcode: "Xcode_13.4.1"
runsOn: macOS-12
name: "macOS 12, Xcode 13.4.1, Swift 5.6.1"
action: swift test -c debug
- xcode: "Xcode_12.5.1"
runsOn: macOS-11
name: "macOS 11, Xcode 12.5.1, Swift 5.4.2"
action: swift test -c debug
- xcode: "Xcode_12"
runsOn: macOS-10.15
name: "macOS 10.15, Xcode 12.0.1, Swift 5.3"
action: swift build -c debug
steps:
- uses: actions/checkout@v2
- name: ${{ matrix.name }}
run: |
swift build
swift test
run: ${{ matrix.action }}

0 comments on commit 6235703

Please sign in to comment.