Project import generated by Copybara. #261
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: gretel-synthetics wheel build | |
| on: [pull_request] | |
| jobs: | |
| push: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Setup Python | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: 3.9 | |
| - name: Build wheel | |
| run: | | |
| pip install wheel | |
| python setup.py sdist bdist_wheel | |
| - name: Install wheel | |
| run: pip install dist/gretel_synthetics-*.whl | |