diff --git a/.github/workflows/just_checks.yml b/.github/workflows/just_checks.yml index 49627d2d7f..6bcaceb8e7 100644 --- a/.github/workflows/just_checks.yml +++ b/.github/workflows/just_checks.yml @@ -18,11 +18,6 @@ jobs: with: python-version: '3.8' - name: Install dependencies - run: | - pip install click \ - "mypy==1.8.0" \ - types-python-dateutil \ - types-waitress \ - types-PyYAML + run: pip install -r requirements/requirements-ci-just.txt - name: Check ${{ matrix.just_cmd }} run: just ${{ matrix.just_cmd }} diff --git a/requirements/requirements-ci-just.txt b/requirements/requirements-ci-just.txt new file mode 100644 index 0000000000..c481648433 --- /dev/null +++ b/requirements/requirements-ci-just.txt @@ -0,0 +1,5 @@ +click +mypy==1.8.0 +types-python-dateutil +types-waitress +types-PyYAML \ No newline at end of file