Update readme to include --linear16to8
#24
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
| # https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: Build | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| name: Test | |
| strategy: | |
| # Keep running so we can see if other tests pass | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - '3.7' | |
| - '3.8' | |
| - '3.9' | |
| os: | |
| - ubuntu-22.04 | |
| include: | |
| - python-version: '3.7' | |
| os: macos-13 | |
| - python-version: '3.7' | |
| os: windows-2022 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.ref }} | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: python -mpip install -U wheel flake8 virtualenv | |
| - name: Run tests | |
| run: | | |
| flake8 | |
| python setup.py build | |
| # https://packaging.python.org/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/ | |
| publish-pypi: | |
| name: Pypi | |
| if: startsWith(github.ref, 'refs/tags') | |
| needs: | |
| # Only publish if other jobs passed | |
| - test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.ref }} | |
| - uses: actions/setup-python@v5 | |
| - name: Build package | |
| run: | | |
| python -mpip install wheel | |
| python setup.py sdist bdist_wheel | |
| - name: Publish to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| password: ${{ secrets.PYPI_API_TOKEN }} |