Merge pull request #1 from mipalgu/subdirs #20
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: MacOS Monterey Swift Debug CI | |
on: | |
push: | |
branches: [development, main] | |
pull_request: | |
branches: [development, main] | |
jobs: | |
exec-mac-ci-debug: | |
runs-on: macos-12 | |
steps: | |
- uses: swift-actions/setup-swift@v1 | |
with: | |
swift-version: "5.7" | |
#- name: Install guunits | |
# uses: mipalgu/install-guunits@main | |
- name: Setup SSH Key | |
uses: webfactory/ssh-agent@v0.5.4 | |
with: | |
ssh-private-key: ${{ secrets.WORKFLOWS_SSH_PRIVATE_KEY }} | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
#- name: Reconfigure Private Repo URLs | |
# run: sed -i 's/git@github.com:/https:\/\/${{ secrets.ACCESS_TOKEN }}@github.com\//g' Package.swift | |
- name: Debug Build | |
run: swift build -c debug | |
- name: Debug Test | |
run: | | |
ulimit -n 65000 | |
swift test | |