Skip to content

Commit

Permalink
Merge pull request #6 from fireblade-engine/update-ci
Browse files Browse the repository at this point in the history
Update ci.yml
  • Loading branch information
ctreffs authored Apr 21, 2023
2 parents 52752ae + 6415386 commit a2f097f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,19 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
xcode: ["11.7", "12.3"]
xcode: ["13.4.2", "14.2"]
steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v3

- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Swift version
run: swift --version

- name: Test
run: swift test -v --skip-update --parallel --enable-test-discovery --enable-code-coverage
run: swift test -v --skip-update --parallel --enable-code-coverage
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer

- name: Build Release
run: swift build -c release
env:
Expand All @@ -37,16 +38,15 @@ jobs:
image: swift:${{ matrix.swift }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: "Update APT"
shell: bash
run: "apt update"
- name: "Install curl"
shell: bash
run: "apt-get install -y curl"
- name: Swift version
run: swift --version
uses: actions/checkout@v3

- name: "Install dependencies"
run: |
"apt update"
"apt install -y curl"
- name: Test
run: swift test -v --skip-update --parallel --enable-test-discovery --enable-code-coverage
run: swift test -v --parallel --enable-code-coverage

- name: Build Release
run: swift build -c release

0 comments on commit a2f097f

Please sign in to comment.