Skip to content

Commit

Permalink
Save.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreafrancia committed May 25, 2024
1 parent 22e59b9 commit a506b42
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,18 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: update certificate
run: sudo update-ca-certificates -v
if:
- name: Set up 3.5 Python
if: ${{ matrix.python-version == '3.5' }}
uses: actions/setup-python@v5
env:
# Workaround copied from
# https://github.com/ytdl-org/youtube-dl/commit/a08f2b7e4567cdc50c0614ee0a4ffdff49b8b6e6
PIP_TRUSTED_HOST: "pypi.python.org pypi.org files.pythonhosted.org"
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
if: ${{ matrix.python-version != '3.5' }}
with:
python-version: ${{ matrix.python_version }}
- name: Upgrade pip
Expand Down

0 comments on commit a506b42

Please sign in to comment.