Skip to content
Merged
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
18 changes: 11 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ on:

jobs:
smoke-test:
runs-on: macos-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-14, macos-15, macos-26]
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Checkout Repo
uses: actions/checkout@v4

- name: Build
run: swift build -v
- name: Build
run: swift build -v

- name: Run Smoke Test
run: swift run -v DictionaryKitExample
- name: Run Smoke Test
run: swift run -v DictionaryKitExample
7 changes: 5 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
// swift-tools-version: 6.1
// swift-tools-version: 5.4

import PackageDescription

let package = Package(
name: "DictionaryKit",
platforms: [
.macOS(.v10_13)
],
products: [
.library(
name: "DictionaryKit",
Expand All @@ -12,7 +15,7 @@ let package = Package(
],
targets: [
.target(
name: "DictionaryKit",
name: "DictionaryKit"
),
.executableTarget(
name: "DictionaryKitExample",
Expand Down