From ad3cf480d206e3d202b1fc1b44e37b0974697b06 Mon Sep 17 00:00:00 2001 From: Christian Henkel <6976069+ct2034@users.noreply.github.com> Date: Thu, 20 Jul 2023 23:55:57 +0200 Subject: [PATCH] installing first (#31) Signed-off-by: Christian Henkel --- .github/workflows/release.yml | 8 +++++++- .gitignore | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) 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