Skip to content

Commit def8c62

Browse files
authored
Merge pull request #4 from swiftpackages/update-workflows
Update workflows and add CODEOWNERS
2 parents 3261ee2 + 5884900 commit def8c62

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@marzvrover

.github/workflows/macOS.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main ]
8+
types: [opened, reopened]
9+
schedule:
10+
- cron: '0 0 1,15 * *'
11+
workflow_dispatch:
812

913
jobs:
1014
build:
@@ -14,7 +18,9 @@ jobs:
1418
steps:
1519
- uses: actions/checkout@v2
1620
- name: Setup Swift
17-
uses: fwal/setup-swift@v1.5.0
21+
uses: fwal/setup-swift@v1.14.0
22+
with:
23+
swift-version: "5.1"
1824
- name: Build
1925
run: swift build -v
2026
- name: Run tests

.github/workflows/ubuntu.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main ]
8+
types: [opened, reopened]
9+
schedule:
10+
- cron: '0 0 1,15 * *'
11+
workflow_dispatch:
812

913
jobs:
1014
build:
@@ -14,7 +18,9 @@ jobs:
1418
steps:
1519
- uses: actions/checkout@v2
1620
- name: Setup Swift
17-
uses: fwal/setup-swift@v1.5.0
21+
uses: fwal/setup-swift@v1.14.0
22+
with:
23+
swift-version: "5.1"
1824
- name: Build
1925
run: swift build -v
2026
- name: Run tests

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
targets: ["DotEnv"]),
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/apple/swift-nio.git", from: "2.23.0"),
13+
.package(url: "https://github.com/apple/swift-nio.git", "2.23.0"..."2.39.0"),
1414
],
1515
targets: [
1616
.target(

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You can easily add as a requirement with [SwiftPM](https://swift.org/package-man
2323
Here are some quick copypastas for you
2424

2525
```swift
26-
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.0"),
26+
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"),
2727
```
2828
```swift
2929
.product(name: "DotEnv", package: "DotEnv"),
@@ -47,7 +47,7 @@ let package = Package(
4747
targets: ["SuperCoolProject"]),
4848
],
4949
dependencies: [
50-
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.0"),
50+
.package(url: "https://github.com/swiftpackages/DotEnv.git", from: "2.0.1"),
5151
],
5252
targets: [
5353
.target(

0 commit comments

Comments
 (0)