Skip to content

LF-101 Update README #258

LF-101 Update README

LF-101 Update README #258

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: Swift
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
# Disabling tests for linux due an issue:
# https://github.com/apple/swift/issues/56730
# https://github.com/apple/swift-corelibs-foundation/issues/4804
# - name: Run tests
# run: swift test -v