update ci-testing.yml (#3322)
* update ci-testing.yml * update greetings.yml * bring back os matrixpull/3379/head
parent
4d4a2b0520
commit
3fea068384
|
@ -2,12 +2,10 @@ name: CI CPU testing
|
||||||
|
|
||||||
on: # https://help.github.com/en/actions/reference/events-that-trigger-workflows
|
on: # https://help.github.com/en/actions/reference/events-that-trigger-workflows
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ master, develop ]
|
||||||
pull_request:
|
pull_request:
|
||||||
# The branches below must be a subset of the branches above
|
# The branches below must be a subset of the branches above
|
||||||
branches: [ master ]
|
branches: [ master, develop ]
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * *' # Runs at 00:00 UTC every day
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cpu-tests:
|
cpu-tests:
|
||||||
|
|
|
@ -16,7 +16,7 @@ jobs:
|
||||||
git remote add upstream https://github.com/ultralytics/yolov5.git
|
git remote add upstream https://github.com/ultralytics/yolov5.git
|
||||||
git fetch upstream
|
git fetch upstream
|
||||||
git checkout feature # <----- replace 'feature' with local branch name
|
git checkout feature # <----- replace 'feature' with local branch name
|
||||||
git rebase upstream/master
|
git rebase upstream/develop
|
||||||
git push -u origin -f
|
git push -u origin -f
|
||||||
```
|
```
|
||||||
- ✅ Verify all Continuous Integration (CI) **checks are passing**.
|
- ✅ Verify all Continuous Integration (CI) **checks are passing**.
|
||||||
|
|
Loading…
Reference in New Issue