Skip to content

Commit df37188

Browse files
author
Hoang Pham
committed
Update github workflow
1 parent f55a2f9 commit df37188

2 files changed

Lines changed: 8 additions & 10 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,16 @@ jobs:
1818
- name: Setup Swift
1919
uses: swift-actions/setup-swift@v2
2020
with:
21-
swift-version: "6.0"
21+
swift-version: "6.2"
2222

2323
- name: Show Swift version
2424
run: swift --version
2525

2626
- name: Run Tests
27-
run: |
28-
swift test \
29-
-Xswiftc -strict-concurrency=complete \
30-
-Xswiftc -warn-concurrency \
31-
--parallel
27+
run: swift test --parallel
3228

3329
- name: Run Tests with Coverage
34-
run: |
35-
swift test \
36-
-Xswiftc -strict-concurrency=complete \
37-
--enable-code-coverage
30+
run: swift test --enable-code-coverage
3831

3932
- name: Generate Coverage Report
4033
run: |

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# SwiftUI Query
22

3+
[![Tests](https://github.com/muzix/swiftui-query/actions/workflows/tests.yml/badge.svg)](https://github.com/muzix/swiftui-query/actions/workflows/tests.yml)
4+
[![Swift 6.0](https://img.shields.io/badge/Swift-6.0-orange.svg)](https://swift.org)
5+
[![Platforms](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20tvOS%20|%20watchOS-blue.svg)](https://swift.org)
6+
[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
7+
38
A Swift implementation of [TanStack Query](https://tanstack.com/query) for SwiftUI applications, providing powerful asynchronous state management with caching, synchronization, and infinite queries.
49

510
> **Inspired by TanStack Query** - This library brings the beloved patterns and features of TanStack Query (formerly React Query) to the Swift ecosystem, adapted for SwiftUI and Swift's concurrency model.

0 commit comments

Comments
 (0)