diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index f19ea3c7..81b99358 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -48,4 +48,4 @@ jobs: title: "Bump version to ${{ env.NEW_VERSION }}" body: "Automated version bump to ${{ env.NEW_VERSION }}" branch: "bump-version-${{ env.NEW_VERSION }}" - base: "main" \ No newline at end of file + base: "main" \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23298fbf..e88ac259 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: branches: [ main ] jobs: - test: + build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -22,7 +22,4 @@ jobs: curl -sSL https://install.python-poetry.org | python3 - - name: Install dependencies - run: poetry install - - - name: Run tests - run: poetry run pytest \ No newline at end of file + run: poetry install \ No newline at end of file diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b63f371f..476b7dda 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -26,11 +26,8 @@ jobs: run: | poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} - - name: Install dependencies - run: poetry install - - name: Build package run: poetry build - name: Publish to PyPI - run: poetry publish \ No newline at end of file + run: poetry publish \ No newline at end of file