Skip to content

feat: fal.run url support #31

feat: fal.run url support

feat: fal.run url support #31

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.7", "5.8", "5.9"]
runs-on: macos-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@v1
with:
swift-version: ${{ matrix.swift }}
- name: Test library
run: swift test
- name: Build library
run: swift build --target FalClient --configuration release
samples:
name: Build samples

Check failure on line 29 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 29, Col: 5): Required property is missing: runs-on
needs: build
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Setup Swift
uses: swift-actions/setup-swift@v1
with:
swift-version: "5.9"
- name: Build basic app
uses: sersoft-gmbh/xcodebuild-action@v3
with:
project: Sources/Samples/FalSampleApp/FalSampleApp.xcodeproj
scheme: FalSampleApp
destination: platform=iOS Simulator,name=iPhone 13,OS=15.6
action: build