Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_15.0.app
uses: maxim-lobanov/setup-xcode@v1
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

with:
xcode-version: latest-stable
- name: Build and Test SPM
run: swift test -v
- name: Build and Test CocoaPods
Expand Down
6 changes: 4 additions & 2 deletions Sources/BigNumber/Swift-Big-Number-Core.swift
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ public struct BInt:
SignedNumeric, // Implies Numeric, Equatable, ExpressibleByIntegerLiteral
BinaryInteger, // Implies Hashable, CustomStringConvertible, Strideable, Comparable
ExpressibleByFloatLiteral,
Codable
Codable,
Sendable
{
//
//
Expand Down Expand Up @@ -2229,7 +2230,8 @@ public struct BDouble:
SignedNumeric,
Comparable,
Hashable,
Codable
Codable,
Sendable
{
//
//
Expand Down