Merge pull request #188 from chrishavlin/fix_sph_vol_outlines #469
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Build | |
| on: [push, pull_request] | |
| jobs: | |
| check-build: | |
| name: Check Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Set up Python 3.10 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install check-build dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install --user build twine | |
| - name: Build source tarball | |
| run: python -m build --sdist --outdir dist/ . | |
| - name: Check with twine | |
| run: twine check dist/* |