Merge pull request #11 from hnez/setuptools-scm #10
This file contains 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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Source Distribution and Wheel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# include tags and full history for setuptools_scm | |
fetch-depth: 0 | |
- run: make build | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: dist |