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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Build ${{ matrix.config }} without exports
run: swift build -c ${{ matrix.config }} -Xswiftc -D -Xswiftc EXCLUDE_EXPORTS
- name: Run ${{ matrix.config }} tests
run: swift test -c ${{ matrix.config }}
run: swift test -c ${{ matrix.config }} --traits SQLiteDataTagged

examples:
name: Examples
Expand Down
2 changes: 1 addition & 1 deletion Sources/SQLiteData/Traits/Tagged.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if SQLiteDataTagged
import Tagged
public import Tagged

extension Tagged: IdentifierStringConvertible where RawValue: IdentifierStringConvertible {
public init?(rawIdentifier: String) {
Expand Down