Skip to content

Commit 3c2b464

Browse files
authored
bump minimum deps (#11)
* bump minimum deps * update all * add codecov file * Update ci.yml * Update ci.yml * Update .codecov.yml
1 parent 6c3aa61 commit 3c2b464

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

.codecov.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
coverage:
2+
ignore:
3+
- Tests/ParseServerSwiftTests/.*
4+
status:
5+
patch:
6+
default:
7+
target: auto
8+
changes: false
9+
project:
10+
default:
11+
target: 43
12+
comment:
13+
require_changes: true

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build and Test
2929
run: swift test --enable-code-coverage -v
3030
env:
31-
DEVELOPER_DIR: ${{ env.CI_XCODE_13 }}
31+
DEVELOPER_DIR: ${{ env.CI_XCODE }}
3232
- name: Prepare codecov
3333
uses: sersoft-gmbh/swift-coverage-action@v3
3434
id: coverage-files
@@ -56,6 +56,8 @@ jobs:
5656
github-token: ${{ secrets.GITHUB_TOKEN }}
5757
- name: Build and Test
5858
run: swift test --enable-test-discovery --enable-code-coverage -v
59+
- name: Update codecov config
60+
run: cat .codecov.yml | curl --data-binary @- https://codecov.io/validate
5961
- name: Prepare codecov
6062
run: |
6163
llvm-cov export -format="lcov" .build/x86_64-unknown-linux-gnu/debug/ParseServerSwiftPackageTests.xctest -instr-profile .build/x86_64-unknown-linux-gnu/debug/codecov/default.profdata > info_linux.lcov

Package.resolved

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.5.2
22
import PackageDescription
33

44
let package = Package(
@@ -11,7 +11,7 @@ let package = Package(
1111
],
1212
dependencies: [
1313
// 💧 A server-side Swift web framework.
14-
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.67.5")),
14+
.package(url: "https://github.com/vapor/vapor.git", .upToNextMajor(from: "4.68.0")),
1515
.package(url: "https://github.com/vapor/leaf.git", .upToNextMajor(from: "4.2.4")),
1616
.package(url: "https://github.com/netreconlab/Parse-Swift.git",
1717
.upToNextMajor(from: "4.16.2")),

0 commit comments

Comments
 (0)