Skip to content

Commit

Permalink
(fix): Fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
N3v1 committed Jul 16, 2024
1 parent df89cbb commit 20ac3aa
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,20 @@ jobs:
runs-on: macos-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Swift
uses: fwal/setup-swift@v1.0.1
with:
swift-version: '6.0'
- name: Set up Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: "6.0"

- name: Build and run tests
run: swift test --enable-test-discovery

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v2
with:
name: test-results
path: .build/x86_64-apple-macosx/debug/test-results
- name: Build and run tests
run: swift test --enable-test-discovery

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v2
with:
name: test-results
path: .build/x86_64-apple-macosx/debug/test-results

0 comments on commit 20ac3aa

Please sign in to comment.