Update Date+ExpressibleByIntegerLiteral.swift #42
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: "\U0001F9F9 Swift Lint| WrkstrmFoundation" | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
paths: | |
- '**' | |
jobs: | |
swift-build: | |
strategy: | |
matrix: | |
os: | |
- macos-13 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Cache Homebrew dependencies | |
id: cache-brew | |
uses: actions/cache@v3 | |
with: | |
path: /usr/local/Homebrew ~/Library/Caches/Homebrew | |
key: ${{ runner.os }}-homebrew-${{ hashFiles('**/Brewfile') }} | |
- name: Check Cache | |
run: 'echo ''Cache hit: ${{ steps.cache-brew.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: 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: brew install swiftlint | |
if: steps.cache-brew.outputs.cache-hit != 'true' | |
run: brew install swiftlint | |
- name: Download SwiftLint Configuration | |
if: matrix.os == 'macos-latest' || matrix.os == 'macos-13' | |
run: curl -O https://raw.githubusercontent.com/wrkstrm/WrkstrmConfig/main/.swiftlint.yml | |
- name: SwiftLint | |
run: swiftlint |