Skip to content

Commit

Permalink
Prevent parallel executions of the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
camposandro committed Aug 3, 2023
1 parent 6f57e79 commit d99a377
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/asv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,16 @@ env:

jobs:

consecutiveness:
runs-on: ubuntu-latest
steps:
- uses: mktcode/consecutive-workflow-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

setup-python:
runs-on: ubuntu-latest
needs: consecutiveness

steps:
- name: Cache Python ${{ env.PYTHON_VERSION }}
Expand Down

0 comments on commit d99a377

Please sign in to comment.