Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .ci/cicd-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
build~=1.3.0
pytest~=9.0.2
twine~=6.2.0
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ jobs:
with:
python-version: '3.x'

- name: Install CI/CD requirements
run: |
pip install -r .ci/cicd-requirements.txt

- name: Build sdist
run: |
pip install build
python -m build --sdist

- name: Build wheels (macOS)
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Install CI/CD requirements
run: |
pip install -r .ci/cicd-requirements.txt

- name: Install project
run: |
pip install pytest
pip install -e .

- name: Test with pytest
Expand Down
Loading