Skip to content

Commit 4a48bcd

Browse files
authored
Merge pull request #3 from Ryu0118/package
Bump swift-composable-architecture to 1.0.0<2.0.0
2 parents c2e1ead + 8eb77ec commit 4a48bcd

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

.github/workflows/test.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let package = Package(
1919
),
2020
],
2121
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")
2323
],
2424
targets: [
2525
// Targets are the basic building blocks of a package, defining a module or a test suite.

0 commit comments

Comments
 (0)