Skip to content

Commit

Permalink
CI fix for tests/ submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
asumagic committed Apr 17, 2024
1 parent 688f032 commit eb8e078
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Check failure on line 14 in .github/workflows/pre-commit.yml

View workflow job for this annotation

GitHub Actions / pre-commit

14:23 [truthy] truthy value should be one of [False, True]
- uses: actions/setup-python@v2
with:
python-version: '3.8'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
matrix:
python-version: [3.8, 3.12]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Check failure on line 21 in .github/workflows/pythonapp.yml

View workflow job for this annotation

GitHub Actions / pre-commit

21:31 [truthy] truthy value should be one of [False, True]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
name: Builds and publishes to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: main
submodules: true

Check failure on line 18 in .github/workflows/release.yml

View workflow job for this annotation

GitHub Actions / pre-commit

18:23 [truthy] truthy value should be one of [False, True]
- uses: actions/setup-python@v2
with:
python-version: 3.8
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/verify-docs-gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true

Check failure on line 15 in .github/workflows/verify-docs-gen.yml

View workflow job for this annotation

GitHub Actions / pre-commit

15:31 [truthy] truthy value should be one of [False, True]
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit eb8e078

Please sign in to comment.