Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
nh13 committed Jan 16, 2025
1 parent ee10a83 commit bdb49b4
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 61 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,44 @@ jobs:
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}

# FIXME: remove me
build-sdist:
name: build source distribution
needs: testing
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true

- uses: actions/setup-python@v5
with:
python-version: 3.12

- name: Install poetry
run: |
python -m pip install --upgrade pip
python -m pip install poetry==${{env.POETRY_VERSION}}
- name: Configure poetry
shell: bash
run: poetry config virtualenvs.in-project true

- name: Install dependencies
run: poetry install --no-interaction --no-root --without=dev

- name: Install project
run: poetry install --no-interaction --without=dev

- name: Build package
run: poetry build --format=sdist

- name: Print contents
run: tar -tf dist/*.tar.gz

# - uses: actions/upload-artifact@v4
# with:
# name: pybwa-sdist
# path: dist/*.tar.gz
61 changes: 0 additions & 61 deletions .github/workflows/wheels.yml

This file was deleted.

0 comments on commit bdb49b4

Please sign in to comment.