Merge pull request #44 from melissalinkert/readme-updates #73
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 flake8 virtualenv | |
| - name: Run tests | |
| run: | | |
| flake8 | |
| python setup.py build | |
| build: | |
| needs: | |
| - test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.ref }} | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: python -mpip install -U wheel | |
| - name: Build package | |
| run: python setup.py sdist bdist_wheel | |
| - name: Artifact upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: isyntax2raw | |
| path: dist/*.whl | |
| retention-days: 30 | |
| - name: Create a GitHubrelease | |
| if: startsWith(github.ref, 'refs/tags') | |
| run: gh release create --generate-notes "${GITHUB_REF#refs/tags/}" | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Publish to PyPI | |
| if: startsWith(github.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| password: ${{ secrets.PYPI_API_TOKEN }} |