Skip to content

Commit

Permalink
move integration tests to cron
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw committed Nov 13, 2023
1 parent ed36861 commit f9bdf2f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,3 @@ jobs:
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
- name: Run tests
run: make test-examples

integration:
name: Integration
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Select Xcode 15
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
- name: Run tests
run: make test-integration
15 changes: 15 additions & 0 deletions .github/workflows/scheduled-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
schedule:
- cron: '30 8 * * *'
- cron: '30 20 * * *'

jobs:
integration:
name: Integration
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Select Xcode 15
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
- name: Run tests
run: make test-integration

0 comments on commit f9bdf2f

Please sign in to comment.