Skip to content

Try to tweak AutoLayout to fix 14px offset bug #9

Try to tweak AutoLayout to fix 14px offset bug

Try to tweak AutoLayout to fix 14px offset bug #9

Workflow file for this run

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-14 ## ref https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/
steps:
- uses: actions/checkout@v3
- name: Set up Swift
uses: fwal/setup-swift@v1
with:
swift-version: '5.9'
- name: Build
run: swift build -v
# - name: Run tests
# run: swift test -v
# Temporarily disabling the test run on GitHub Actions due to a compatibility issue with Swift 5.9.
# Local tests are running fine. We are looking into resolving this issue.