Skip to content

Update release.yml

Update release.yml #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
xcodebuild build \
-project AmorphousDiskMark/AmorphousDiskMark.xcodeproj \
-scheme AmorphousDiskMark \
-destination 'platform=macOS' \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
- name: Test
run: |
xcodebuild test \
-project AmorphousDiskMark/AmorphousDiskMark.xcodeproj \
-scheme AmorphousDiskMark \
-destination 'platform=macOS' \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO