Skip to content

Commit

Permalink
Add package install testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac committed Aug 25, 2024
1 parent 18e5104 commit 08fbd04
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/entrypoint_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@ jobs:
with:
python-version: "3.10"
- name: Install requirements
run: python -m pip install --user build
run: python -m pip install --user build venv
- name: Cleaning
run : python setup.py clean
- name: Build Exegol
run: python -m build --sdist --outdir dist/ .
- name: Create testing venv
run: python -m venv vtest
- name: Install pip package
run: ./vtest/bin/pip install ./dist/*
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
Expand Down

0 comments on commit 08fbd04

Please sign in to comment.