Skip to content

Commit

Permalink
workaround actions/runner#480
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoulaj committed Apr 18, 2021
1 parent 599ea28 commit c939719
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 21 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ on:
branches:
- master

env:
PLATFORM: 'ubuntu-latest'
PYTHON_VERSION: '3.9'

jobs:
benchmark:

name: ${{ env.PLATFORM }} - python ${{ env.PYTHON_VERSION }}
name: 'benchmarks'

runs-on: ${{ env.PLATFORM }}
runs-on: 'ubuntu-latest'

steps:
- name: Checkout
Expand All @@ -26,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
python-version: 3.9

- name: Install dependencies
run: |
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ on:
branches:
- master

env:
PLATFORM: 'ubuntu-latest'
PYTHON_VERSION: '3.9'

jobs:
lint:

name: ${{ env.PLATFORM }} - python ${{ env.PYTHON_VERSION }}
name: 'lint'

runs-on: ${{ env.PLATFORM }}
runs-on: 'ubuntu-latest'

steps:
- name: Checkout
Expand All @@ -26,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
python-version: 3.9

- name: Install dependencies
run: |
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ on:
branches:
- master

env:
PLATFORM: 'ubuntu-latest'
PYTHON_VERSION: '3.9'

jobs:
python-packages:

name: ${{ env.PLATFORM }} - python ${{ env.PYTHON_VERSION }}
name: 'python packages'

runs-on: ${{ env.PLATFORM }}
runs-on: 'ubuntu-latest'

steps:
- name: Checkout
Expand All @@ -26,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
python-version: 3.9

- name: Install dependencies
run: |
Expand Down

0 comments on commit c939719

Please sign in to comment.