Skip to content

Commit bb47687

Browse files
author
Hoang Pham
committed
Fix workflow
1 parent df37188 commit bb47687

3 files changed

Lines changed: 6 additions & 16 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,20 @@ name: Tests
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [ main, 'feature/**', 'fix/**' ]
66
pull_request:
77
branches: [ main ]
8+
workflow_dispatch:
89

910
jobs:
1011
test:
1112
name: Test SwiftUI Query
12-
runs-on: macos-14
13-
13+
runs-on: macos-15
14+
1415
steps:
1516
- name: Checkout
1617
uses: actions/checkout@v4
17-
18-
- name: Setup Swift
19-
uses: swift-actions/setup-swift@v2
20-
with:
21-
swift-version: "6.2"
22-
18+
2319
- name: Show Swift version
2420
run: swift --version
2521

Package.swift

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,12 @@ let package = Package(
2424
name: "SwiftUIQuery",
2525
dependencies: [
2626
.product(name: "Perception", package: "swift-perception")
27-
],
28-
swiftSettings: [
29-
.enableUpcomingFeature("StrictConcurrency")
3027
]
3128
),
3229
.testTarget(
3330
name: "SwiftUIQueryTests",
3431
dependencies: [
3532
"SwiftUIQuery",
36-
],
37-
swiftSettings: [
38-
.enableUpcomingFeature("StrictConcurrency")
3933
]
4034
),
4135
]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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)
3+
[![Tests](https://github.com/muzix/SwiftUIQuery/actions/workflows/tests.yml/badge.svg)](https://github.com/muzix/SwiftUIQuery/actions/workflows/tests.yml)
44
[![Swift 6.0](https://img.shields.io/badge/Swift-6.0-orange.svg)](https://swift.org)
55
[![Platforms](https://img.shields.io/badge/Platforms-iOS%20|%20macOS%20|%20tvOS%20|%20watchOS-blue.svg)](https://swift.org)
66
[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)

0 commit comments

Comments
 (0)