Skip to content

Make julian and gregorian types codable #5

Make julian and gregorian types codable

Make julian and gregorian types codable #5

Workflow file for this run

name: Swift
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
macos:
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Swift
uses: SwiftyLab/setup-swift@latest
with:
swift-version: "6.0.2"
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
linux:
runs-on: ubuntu-latest
container:
image: swift:6.0
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Swift
uses: SwiftyLab/setup-swift@latest
with:
swift-version: "6.0.2"
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v