Github Actions: Checkout submodules recursive

This commit is contained in:
Ivan Kravets
2020-05-14 18:08:51 +03:00
parent 099e3c7198
commit 54d73e834b
4 changed files with 7 additions and 4 deletions

View File

@@ -12,13 +12,14 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
git submodule update --init --recursive
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox pip install tox

View File

@@ -7,13 +7,14 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: 3.7 python-version: 3.7
- name: Install dependencies - name: Install dependencies
run: | run: |
git submodule update --init --recursive
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox pip install tox

View File

@@ -12,13 +12,14 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1 uses: actions/setup-python@v1
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
git submodule update --init --recursive
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox pip install tox

2
docs

Submodule docs updated: c04945bf3a...826897f3ab