Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit c2c0a97

Browse files
committed
share lockfile between lint and docs
1 parent 61dc17d commit c2c0a97

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Ignore folders that can be large.
2+
# This saves time copying them into the context at the start of a build.
13
build/
24
.mypy_cache
35
.tox

.github/workflows/code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install python packages
2424
uses: ./.github/actions/install_requirements
2525
with:
26-
requirements_file: requirements-lint.txt
26+
requirements_file: requirements-dev-3.x.txt
2727
install_options: -e .[dev]
2828

2929
- name: Lint

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install python packages
2828
uses: ./.github/actions/install_requirements
2929
with:
30-
requirements_file: requirements-docs.txt
30+
requirements_file: requirements-dev-3.x.txt
3131
install_options: -e .[dev]
3232

3333
- name: Build docs

0 commit comments

Comments
 (0)