Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: monorepo: test swift 5.9 on ci #56

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
linux-build-libs-1:
runs-on: ubuntu-latest
container: swift:5.8-focal
container: swift:5.9-focal
steps:
- name: checkout
uses: actions/checkout@v3
Expand All @@ -19,7 +19,7 @@ jobs:

linux-build-libs-2:
runs-on: ubuntu-latest
container: swift:5.8-focal
container: swift:5.9-focal
steps:
- name: checkout
uses: actions/checkout@v3
Expand All @@ -44,7 +44,7 @@ jobs:

linux-lib-test-libs-1:
runs-on: ubuntu-latest
container: swift:5.8-focal
container: swift:5.9-focal
steps:
- name: checkout
uses: actions/checkout@v3
Expand All @@ -55,7 +55,7 @@ jobs:

linux-lib-test-libs-2:
runs-on: ubuntu-latest
container: swift:5.8-focal
container: swift:5.9-focal
steps:
- name: checkout
uses: actions/checkout@v3
Expand All @@ -74,7 +74,7 @@ jobs:

linux-api-build:
runs-on: ubuntu-latest
container: swift:5.8-focal
container: swift:5.9-focal
steps:
- name: checkout
uses: actions/checkout@v3
Expand All @@ -88,7 +88,7 @@ jobs:

linux-api-test:
runs-on: ubuntu-latest
container: swift:5.8-focal
container: swift:5.9-focal
env:
DATABASE_HOST: postgres
services:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: setup xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 14.3.1
xcode-version: 15.0.1
- uses: actions/cache@v3
with:
path: macapp/App/.build
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import FluentSQL
import Foundation
import Gertie

struct ReworkPayments: GertieMigration {
Expand Down
2 changes: 2 additions & 0 deletions macapp/App/Sources/App/App.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import MacAppRoute

typealias UserData = GetUserData.Output

// make a change to run ci!

@MainActor public struct App {
var menuBarManager: MenuBarManager
var blockedRequestsWindow: BlockedRequestsWindow
Expand Down