Skip to content

Commit

Permalink
add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BorisLys committed Oct 19, 2024
1 parent a47e719 commit d2232ee
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
inputs:
manual:
description: 'Run?'
required: false
type: boolean

jobs:
build:
name: Test
runs-on: macos-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Xcode
run: |
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
- name: Run Ui Tests
run: |
xcodebuild test \
-scheme SwiftRadioUITests \
-destination 'platform=iOS Simulator,name=iPhone 16,OS=latest'

0 comments on commit d2232ee

Please sign in to comment.