Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SwiftBeta committed Nov 9, 2023
1 parent d7318a3 commit 3a181ed
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,19 @@ on:

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: swift build
- name: Run tests
run: swift test
- uses: actions/checkout@v3

- name: Install SwiftLint
run: brew install swiftlint

- name: Run SwiftLint
run: swiftlint

- name: Build
run: swift build

- name: Run tests
run: swift test

0 comments on commit 3a181ed

Please sign in to comment.