forked from home-assistant/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix audit-licenses check for multiple Python versions [ci] (home-assi…
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -622,13 +622,13 @@ jobs: | |
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/[email protected] | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
python-version: ${{ matrix.python-version }} | ||
check-latest: true | ||
- name: Restore full Python ${{ env.DEFAULT_PYTHON }} virtual environment | ||
- name: Restore full Python ${{ matrix.python-version }} virtual environment | ||
id: cache-venv | ||
uses: actions/cache/[email protected] | ||
with: | ||
|
@@ -823,7 +823,7 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
python-version: ${{ fromJson(needs.info.outputs.python_versions) }} | ||
name: Split tests for full run Python ${{ matrix.python-version }} | ||
name: Split tests for full run | ||
steps: | ||
- name: Install additional OS dependencies | ||
run: | | ||
|