Skip to content

Commit

Permalink
cancel running jobs and no-root
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi committed Dec 4, 2023
1 parent 1cde062 commit 66d53e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/release-package/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
python -m pip install --upgrade pip
python -m pip install poetry
cd ${{ inputs.package-directory }}
poetry install
poetry install --no-root
poetry build
- name: Compute PyPI Url
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
branches:
- main

concurrency:
group: ragstack-ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
name: Tests
Expand Down Expand Up @@ -39,7 +43,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
poetry install --no-root
- name: Run unit tests
run: |
Expand Down

0 comments on commit 66d53e9

Please sign in to comment.