Version 0.44.1 #2377
Workflow file for this run
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
# macOS.yaml | |
# | |
# This source file is part of the Workspace open source project. | |
# Diese Quelldatei ist Teil des quelloffenen Arbeitsbereich‐Projekt. | |
# https://github.com/SDGGiesbrecht/Workspace#workspace | |
# | |
# Copyright ©2021–2024 Jeremy David Giesbrecht and the Workspace project contributors. | |
# Urheberrecht ©2021–2024 Jeremy David Giesbrecht und die Mitwirkenden des Arbeitsbereich‐Projekts. | |
# | |
# Soli Deo gloria. | |
# | |
# Licensed under the Apache Licence, Version 2.0. | |
# See http://www.apache.org/licenses/LICENSE-2.0 for licence information. | |
name: macOS | |
on: [push, pull_request] | |
jobs: | |
macOS: | |
name: macOS | |
runs-on: macos-13 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Cache Workspace | |
uses: actions/cache@v3 | |
with: | |
key: macOS‐${{ hashFiles('.github/workflows/**') }} | |
path: .build/SDG/Workspace | |
- name: Set Xcode up | |
shell: bash | |
run: | | |
set -x | |
sudo xcode-select -switch /Applications/Xcode_14.3.app | |
defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidatation -bool YES | |
xcodebuild -version | |
swift --version | |
- name: Refresh | |
shell: bash | |
run: | | |
set -x | |
swift run workspace refresh •language '🇬🇧EN;🇺🇸EN;🇨🇦EN;🇩🇪DE' | |
- name: Validate | |
shell: bash | |
run: | | |
set -x | |
swift run workspace validate •job macos •language '🇬🇧EN;🇺🇸EN;🇨🇦EN;🇩🇪DE' |