We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2c2c22 commit dd8adbdCopy full SHA for dd8adbd
.github/workflows/sampleApp.yml
@@ -2,6 +2,9 @@ name: Sample app
2
3
on:
4
workflow_dispatch:
5
+ schedule:
6
+ # each 5th day of month
7
+ - cron: "0 0 5 * *"
8
push:
9
branches: [ main ]
10
pull_request:
@@ -14,13 +17,11 @@ concurrency:
14
17
jobs:
15
18
build:
16
19
name: Build and test
- runs-on: macos-14
20
+ runs-on: macos-latest
21
steps:
22
- uses: actions/checkout@v4
23
- name: List available Xcode versions
24
run: ls /Applications | grep Xcode
- - name: Set up Xcode version
- run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
25
- name: Show current version of Xcode
26
run: xcodebuild -version
27
- name: Run tests
0 commit comments