Skip to content

Commit

Permalink
attempt to fix concurrency bug
Browse files Browse the repository at this point in the history
  • Loading branch information
barnesd8 committed Apr 18, 2024
1 parent 8428286 commit 2f47eba
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/test_installs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,19 @@ on:

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

concurrency: release
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-39:
name: Build on Python 3.9
runs-on: ubuntu-latest
concurrency: release
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@master
with:
ref: 'test_release'
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install pypa/build
Expand All @@ -37,14 +36,13 @@ jobs:
build-310:
name: Build on Python 3.10
runs-on: ubuntu-latest
concurrency: release
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@master
with:
ref: 'test_release'
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install pypa/build
Expand All @@ -60,14 +58,13 @@ jobs:
build-311:
name: Build on Python 3.11
runs-on: ubuntu-latest
concurrency: release
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@master
with:
ref: 'test_release'
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install pypa/build
Expand All @@ -83,14 +80,13 @@ jobs:
build-312:
name: Build on Python 3.12
runs-on: ubuntu-latest
concurrency: release
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@master
with:
ref: 'test_release'
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install pypa/build
Expand Down

0 comments on commit 2f47eba

Please sign in to comment.