Skip to content

Commit

Permalink
chore: rename (#27)
Browse files Browse the repository at this point in the history
Co-authored-by: danthorpe <danthorpe@users.noreply.github.com>
  • Loading branch information
danthorpe and danthorpe authored Apr 5, 2024
1 parent 3662055 commit e8a8fda
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 270 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/ci.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,20 @@ on:
types: [opened, synchronize, reopened, ready_for_review]

env:
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.2.app/Contents/Developer

concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: macos-13
steps:
- name: Cancel Previous Runs
if: github.ref != 'refs/heads/main'
uses: styfle/cancel-workflow-action@0.10.0
with:
all_but_latest: true
access_token: ${{ github.token }}

- name: Checkout
uses: actions/checkout@v2

- name: Cache SPM
uses: actions/cache@v2
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
Expand Down
8 changes: 1 addition & 7 deletions .scripts/ci-test.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail

xcodebuild test \
-quiet \
-scheme danthorpe-utilities-Package \
-sdk iphonesimulator \
-derivedDataPath .build \
-skipPackagePluginValidation \
-destination "platform=iOS Simulator,name=iPhone 14 Pro"
swift test
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key>
<true/>
</dict>
</plist>

This file was deleted.

4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/pointfreeco/swift-concurrency-extras",
"state" : {
"revision" : "ea631ce892687f5432a833312292b80db238186a",
"version" : "1.0.0"
"revision" : "bb5059bde9022d69ac516803f4f227d8ac967f71",
"version" : "1.1.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// swift-tools-version: 5.8
import PackageDescription

var package = Package(name: "danthorpe-utilities")
var package = Package(name: "swift-utilities")

// MARK: 💫 Package Customization

Expand Down

0 comments on commit e8a8fda

Please sign in to comment.