Skip to content

Commit

Permalink
Automating pypi releases with Github action (#278)
Browse files Browse the repository at this point in the history
* add pypi release github action

* fix pypi release action by adding checkout action
  • Loading branch information
ayush9pandey authored Jun 20, 2024
1 parent 8db3158 commit 33c66a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov python-libsbml
- name: Tnstall biocrnpyler
- name: Install biocrnpyler
run: pip install -e .[all]
- name: Test biocrnpyler
run: pytest --cov biocrnpyler
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ jobs:
environment: Release Deploy

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '3.12'

Expand Down

0 comments on commit 33c66a6

Please sign in to comment.