Skip to content

Commit

Permalink
Merge pull request #45 from soucolline/develop
Browse files Browse the repository at this point in the history
Version 2.2.1
  • Loading branch information
soucolline authored May 2, 2024
2 parents 4945627 + f2ec0de commit 79e285a
Show file tree
Hide file tree
Showing 17 changed files with 326 additions and 602 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
- 'develop'
jobs:
build:
runs-on: macos-12
runs-on: macos-14
steps:
- uses: swift-actions/setup-swift@v1
- uses: swift-actions/setup-swift@v2
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.0.1'
- uses: actions/checkout@v3
xcode-version: latest-stable
- uses: actions/checkout@v4
- uses: maierj/[email protected]
with:
lane: 'tests'
Expand Down
25 changes: 8 additions & 17 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import PackageDescription

let tca: Target.Dependency = .product(name: "ComposableArchitecture", package: "swift-composable-architecture")
let tcaCoreLocation: Target.Dependency = .product(name: "ComposableCoreLocation", package: "composable-core-location")
let perception: Target.Dependency = .product(name: "Perception", package: "swift-perception")
let dependencies: Target.Dependency = .product(name: "Dependencies", package: "swift-dependencies")

let package = Package(
name: "uv-today-ios",
Expand All @@ -16,8 +16,8 @@ let package = Package(
.library(name: "UVClient", targets: ["UVClient"])
],
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", exact: "0.43.0"),
.package(url: "https://github.com/pointfreeco/composable-core-location", exact: "0.2.0"),
.package(url: "https://github.com/pointfreeco/swift-perception", exact: "1.1.5"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", exact: "1.2.2")
],
targets: [
.target(
Expand All @@ -26,31 +26,22 @@ let package = Package(
"LocationManager",
"Models",
"UVClient",
tca,
tcaCoreLocation
perception,
dependencies
]
),
.target(
name: "LocationManager",
dependencies: [
tcaCoreLocation
dependencies
]
),
.target(name: "Models"),
.target(
name: "UVClient",
dependencies: [
"Models",
tca
]
),
.testTarget(
name: "AppFeatureTests",
dependencies: [
"AppFeature",
"Models",
"UVClient",
tca
dependencies
]
),
.testTarget(
Expand Down
194 changes: 0 additions & 194 deletions Sources/AppFeature/AppReducer.swift

This file was deleted.

Loading

0 comments on commit 79e285a

Please sign in to comment.