Skip to content

Commit

Permalink
BREAKING-CHANGE: get submodules manually
Browse files Browse the repository at this point in the history
  • Loading branch information
sctop committed Apr 13, 2024
1 parent 41fe5a0 commit aeb2d0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Update submodules
run: |
git submodule update --remote

# Run main script to test if it can work
- name: Run testing script
run: |
git clone https://github.com/BA-OST-Index/ost_data.git data
mkdir -p data_export
python main_quick_test.py
4 changes: 1 addition & 3 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Update submodules
run: |
git submodule update --remote

# Run main script to test if it can work
- name: Run testing script
run: |
git clone https://github.com/BA-OST-Index/ost_data.git data
mkdir -p data_export
python main_quick_test.py
7 changes: 1 addition & 6 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,13 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Update submodules
run: |
git submodule update --remote
- name: Run main_quick_test.py
run: |
git clone https://github.com/BA-OST-Index/ost_data.git data
mkdir -p data_export
python main_quick_test.py
- name: Generator Dispatch
Expand Down

0 comments on commit aeb2d0d

Please sign in to comment.