Skip to content

Add any keyword to existential types #319

Add any keyword to existential types

Add any keyword to existential types #319

Workflow file for this run

name: Build and test
on:
pull_request:
paths:
- Vienna*/**
- External/**
- Scripts/**
- Makefile
- .github/workflows/*
jobs:
test:
strategy:
matrix:
os: [macos-13]
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
timeout-minutes: 15
steps:
- name: Set up Git repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build Xcode project
run: xcodebuild build-for-testing -project Vienna.xcodeproj -scheme Vienna -configuration Development | xcpretty && exit ${PIPESTATUS[0]}
- name: Test Xcode project
run: xcodebuild test -project Vienna.xcodeproj -scheme Vienna -configuration Development | xcpretty && exit ${PIPESTATUS[0]}