diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 40793b3..d843a9e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,10 @@ jobs: - python-version: "3.11" os: "ubuntu-22.04" runs-on: ${{ matrix.os }} + concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.python-version }} + cancel-in-progress: true + steps: - uses: szenius/set-timezone@v1.0 with: @@ -33,7 +37,9 @@ jobs: - name: Update pip run: | pip install --upgrade pip - pip install pytest pytest-md pytest-emoji pytest-cov + pip install pytest pytest-md pytest-emoji + - name: Install package + run: pip install . - uses: pavelzw/pytest-action@v2 with: emoji: true diff --git a/.gitignore b/.gitignore index a6e9397..a267ccb 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ __pycache__/ build/ .coverage* coverage.xml +dist/ \ No newline at end of file