Update DateFormatter+Utilities.swift #49
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "\U0001F3CE️ Swift Build| WrkstrmFoundation" | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
swift-build: | |
strategy: | |
matrix: | |
os: | |
- macos-13 | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Cache SPM dependencies | |
id: cache-spm | |
uses: actions/cache@v3 | |
with: | |
path: apple/WrkstrmFoundation/.build | |
restore-keys: ${{ runner.os }}-spm-WrkstrmFoundation- | |
key: ${{ runner.os }}-spm-WrkstrmFoundation-${{ hashFiles('**/Package.resolved') | |
}} | |
- name: Check Cache | |
run: 'echo ''Cache hit: ${{ steps.cache-spm.outputs.cache-hit }}''' | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
if: matrix.os == 'macos-latest' || matrix.os == 'macos-13' || matrix.os == 'self-hosted' | |
with: | |
xcode-version: '15.0' | |
- name: Swift Describe | |
if: steps.cache-spm.outputs.cache-hit != 'true' | |
run: swift package describe --type json | |
- name: Set CI Style | |
run: echo "SPM_CI_USE_LOCAL_DEPS=false" >> $GITHUB_ENV | |
- name: Check CI Style | |
run: '[ -z "${SPM_CI_USE_LOCAL_DEPS}" ] && echo "SPM_CI_LOCAL_DEPS is not set" | |
|| echo "SPM_CI_USE_LOCAL_DEPS is set to ${SPM_CI_USE_LOCAL_DEPS}"' | |
env: | |
SPM_CI_USE_LOCAL_DEPS: ${{ env.SPM_CI_USE_LOCAL_DEPS }} | |
- name: Swift Build | |
run: swift build --target WrkstrmFoundation |