Skip to content

Commit

Permalink
ci: bump Python in GHA to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
eine committed Jan 24, 2020
1 parent beb161f commit 1e20120
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ jobs:
submodules: recursive
- uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: install dependencies
run: |
pip install -U pip --progress-bar off
pip install -U virtualenv tox --progress-bar off
- name: build docs
run: tox -e py37-docs -- --color
run: tox -e py38-docs -- --color
- name: 'publish site to gh-pages'
if: github.event_name != 'pull_request' && github.repository == 'VUnit/vunit'
env:
GH_DEPKEY: ${{ secrets.VUNIT_GITHUB_IO_DEPLOY_KEY }}
run: |
cd .tox/py37-docs/tmp/docsbuild/
cd .tox/py38-docs/tmp/docsbuild/
touch .nojekyll
git init
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,30 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: install dependencies
run: |
pip install -U pip --progress-bar off
pip install -U virtualenv tox --progress-bar off
- name: run 'black'
run: tox -e py37-fmt -- --check
run: tox -e py38-fmt -- --check

lin:
strategy:
fail-fast: false
max-parallel: 2
matrix:
task: [
37-lint,
38-lint,
36-unit,
37-unit,
38-unit,
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: install dependencies
run: |
pip install -U pip --progress-bar off
Expand Down Expand Up @@ -76,11 +76,11 @@ jobs:
max-parallel: 4
matrix:
task: [
37-acceptance-ghdl,
37-vcomponents-ghdl,
37-lint,
38-acceptance-ghdl,
38-vcomponents-ghdl,
38-lint,
36-unit,
37-unit,
38-unit,
]
runs-on: windows-latest
steps:
Expand All @@ -90,7 +90,7 @@ jobs:
if: (endsWith( matrix.task, '-lint' ) || endsWith( matrix.task, '-unit' )) == false
- uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.8
- name: install dependencies
run: |
pip install -U pip --progress-bar off
Expand Down

0 comments on commit 1e20120

Please sign in to comment.