From 72013cdb4b2a852aeb60a99fd929167b783ab0aa Mon Sep 17 00:00:00 2001 From: rex Date: Thu, 24 Oct 2024 16:24:37 +0800 Subject: [PATCH] remove my .yml --- .github/workflow/buildtest.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflow/buildtest.yml diff --git a/.github/workflow/buildtest.yml b/.github/workflow/buildtest.yml deleted file mode 100644 index 1976425..0000000 --- a/.github/workflow/buildtest.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Swift CI - -on: - push: - branches: - - main # Run the action when pushing to the main branch - pull_request: - branches: - - main # Run the action when a PR is opened against main branch - workflow_dispatch: # Trigger the workflow on pull requests to the main branch - -jobs: - test: - runs-on: macos-latest # Use the latest macOS runner, required for Xcode - - steps: - - name: Checkout code - uses: actions/checkout@v3 # Checkout the repository code - - - name: Set up Xcode - run: sudo xcode-select -switch /Applications/Xcode_16.0.app # Specify the Xcode version if needed - - - name: Run tests - working-directory: ./mobile-client - run: xcodebuild test -scheme ToDoList -destination 'platform=iOS Simulator,name=iPhone 16,OS=17.5' -derivedDataPath DerivedData -enableCodeCoverage YES -skipMacroValidation \ No newline at end of file