Skip to content

Update actions/checkout digest to 1d96c77 #30

Update actions/checkout digest to 1d96c77

Update actions/checkout digest to 1d96c77 #30

Workflow file for this run

name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
destination: ["platform=iOS Simulator,OS=16.2,name=iPhone 13"]
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4
- name: Test as package
run: swift test
- name: CocoaPod Install
run: |
cd PersonnummerExample
pod install
- name: Build and test
run: |
cd PersonnummerExample
xcodebuild clean test -workspace PersonnummerExample.xcworkspace -scheme PersonnummerExample -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
env:
destination: ${{ matrix.destination }}