File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 11# This workflow will build and upload a Python Package to TestPyPI
22# https://github.com/marketplace/actions/pypi-publish
3- name : Testing Building and Publish Python Package to TestPyPI
3+ name : Test Building + Publishing to TestPyPI
44on :
55 push :
66 branches : [main, develop]
Original file line number Diff line number Diff line change 1- name : Push Workflow
1+ name : Lint, test + build docs
22
33on : [push]
44
@@ -28,15 +28,15 @@ jobs:
2828 run : |
2929 python -m pip install --upgrade pip
3030 pip install -e .[tests]
31- - name : Run Ruff
31+ - name : Lint
3232 run : ruff check --output-format=github network_wrangler
33- - name : Run tests with coverage and benchmarking
33+ - name : Run tests
3434 run : |
3535 pytest --junitxml=pytest.xml --cov-report "xml:coverage.xml" --benchmark-save=benchmark --benchmark-json=benchmark.json
3636 - name : Build docs
3737 run : |
3838 mike deploy --push ${{ github.ref_name }}
39- - name : Update latest alias if on main branch
39+ - name : Update latest docs
4040 if : github.ref == 'refs/heads/main'
4141 run : |
4242 mike alias latest ${{ github.ref_name }} --push
6262 with :
6363 pytest-xml-coverage-path : coverage.xml
6464 junitxml-path : pytest.xml
65-
Original file line number Diff line number Diff line change 11# This workflow will build and upload a Python Package to PyPI
22# https://github.com/marketplace/actions/pypi-publish
3- name : Publish Python Package 📦 to PyPI
3+ name : Build + Publish Python Package 📦 to PyPI
44on :
55 release :
66 types : [created]
6969 pip install -e .[docs]
7070 - name : Build docs
7171 run : |
72- mike deploy --push --update-aliases latest ${{ github.ref_name }}
72+ mike deploy --push --update-aliases latest ${{ github.ref_name }}
You can’t perform that action at this time.
0 commit comments