Skip to content

Commit

Permalink
recursive checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Aug 11, 2023
1 parent d82d762 commit b7fab10
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/python-core-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
# image
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"

- name: Install latest stable rust
run: |
Expand Down Expand Up @@ -53,6 +55,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -105,6 +109,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -149,7 +155,9 @@ jobs:
working-directory: python/geoarrow-rust

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: "recursive"

- uses: actions/setup-python@v2
name: Install Python
Expand Down

0 comments on commit b7fab10

Please sign in to comment.