Skip to content

Commit b97d2dd

Browse files
committed
Update ci workflow
feature/update-file-header
1 parent 272a6c7 commit b97d2dd

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,25 @@ on:
1111

1212
jobs:
1313
lint:
14-
runs-on: macos-13
14+
runs-on: macos-latest
1515
environment: default
1616
steps:
1717
- uses: actions/checkout@v4
18+
- name: SwiftFormat version
19+
run: swiftformat --version
1820
- name: Format lint
1921
run: swiftformat --lint .
22+
- name: Install SwiftLint
23+
run: brew install swiftlint
24+
- name: SwiftLint version
25+
run: swiftlint --version
2026
- name: Lint
21-
run: swiftlint .
27+
run: swiftlint lint --quiet
2228
test:
29+
runs-on: macos-latest
2330
environment: default
24-
strategy:
25-
matrix:
26-
include:
27-
- os: macos-14
28-
xcode: "15.3" # Swift 5.10
29-
runs-on: ${{ matrix.os }}
3031
steps:
3132
- uses: actions/checkout@v4
32-
- name: Select Xcode ${{ matrix.xcode }}
33-
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
3433
- name: Run Tests
3534
run: swift test --enable-code-coverage
3635
- name: Swift Coverage Report

0 commit comments

Comments
 (0)