Skip to content

Commit cd40434

Browse files
author
Andrew McKnight
committed
Merge branch 'armckngiht/tools/update-swift-toolchain-version' into fork_main
2 parents 0b37285 + 7144378 commit cd40434

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.2
1+
// swift-tools-version:5.10
22
import PackageDescription
33

44
let package = Package(

test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# this file is hardlinked so that it exists as both //.github/workflows/test.yml and //test.yml. this is because Swift package manager will not pull in hidden files into the generated Xcode project when opened from package.swift
2+
3+
name: Test
4+
on:
5+
push:
6+
branches:
7+
- main
8+
9+
pull_request:
10+
paths:
11+
- "Sources/**"
12+
- "Tests/**"
13+
- ".github/workflows/test.yml"
14+
15+
jobs:
16+
test:
17+
name: Test
18+
runs-on: macos-13
19+
steps:
20+
- uses: actions/checkout@v4
21+
- run: make test
22+

0 commit comments

Comments
 (0)