Skip to content

Commit

Permalink
Debug CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
bdragon300 committed Nov 3, 2024
1 parent 778e963 commit 109cca8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.xml
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest

lint:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

build_exe:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: "Commit push"
# needs: "Commit push"
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -71,7 +71,7 @@ jobs:

testpypi_publish:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: "Commit push"
# needs: "Commit push"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 109cca8

Please sign in to comment.