File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ pull_request :
5
+ branches : [ "main" ]
6
+ paths-ignore :
7
+ - README.md
8
+ push :
9
+ branches : [ "main" ]
10
+ paths-ignore :
11
+ - README.md
12
+ workflow_dispatch :
13
+
14
+ concurrency :
15
+ group : format-${{ github.ref }}
16
+ cancel-in-progress : true
17
+
18
+ jobs :
19
+ build :
20
+ name : Test
21
+ strategy :
22
+ fail-fast : false
23
+ matrix :
24
+ os : [macos-13]
25
+ runs-on : ${{ matrix.os }}
26
+ steps :
27
+ - name : Checkout
28
+ uses : actions/checkout@v4
29
+
30
+ - name : Select Xcode 15
31
+ run : sudo xcode-select -s /Applications/Xcode_15.0.app
32
+
33
+ - name : Test
34
+ run : swift test
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ let package = Package(
19
19
) ,
20
20
] ,
21
21
dependencies: [
22
- . package ( url: " https://github.com/pointfreeco/swift-composable-architecture.git " , exact : " 1.3 .0 " )
22
+ . package ( url: " https://github.com/pointfreeco/swift-composable-architecture.git " , " 1.0.0 " ..< " 2.0 .0" )
23
23
] ,
24
24
targets: [
25
25
// Targets are the basic building blocks of a package, defining a module or a test suite.
You can’t perform that action at this time.
0 commit comments