Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin setup-python version #127

Merged
merged 1 commit into from
Apr 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@master
- uses: actions/setup-python@v3.0.0
with:
python-version: "3.x"
cache: pip
- name: run lint
run: |
python3 -m pip install -U tox
Expand All @@ -32,7 +33,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@master
- uses: actions/setup-python@v3.0.0
with:
python-version: "3.x"
- name: run packaging
Expand Down Expand Up @@ -73,9 +74,10 @@ jobs:
python-version: 3.8
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@master
- uses: actions/setup-python@v3.0.0
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: run test
run: |
python3 -m pip install tox
Expand All @@ -98,7 +100,7 @@ jobs:
# python: ["3.6"]
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-python@master
# - uses: actions/setup-python@v3.0.0
# with:
# python-version: ${{ matrix.python-version }}
# - name: run test (devel)
Expand All @@ -111,9 +113,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@master
- uses: actions/setup-python@v3.0.0
with:
python-version: "3.x"
cache: pip
- uses: actions/download-artifact@v2
with:
name: coverage-results
Expand All @@ -139,9 +142,10 @@ jobs:

steps:
- name: Switch to using Python 3.6 by default
uses: actions/setup-python@v2
uses: actions/setup-python@v3.0.0
with:
python-version: 3.6
cache: pip
- name: Install tox
run: python3 -m pip install --user tox
- name: Check out src from Git
Expand Down