Bump pyinstaller from 3.6 to 5.13.1 #26
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: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-18.04, macos-latest] | |
python-version: [3.7, 3.8] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Install dependencies on macOS | |
if: startsWith(matrix.os, 'macos') | |
run: brew install fakeroot dpkg coreutils | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: | | |
pip install --upgrade pip | |
pip install wheel setuptools | |
pip install -r requirements.txt | |
pip install -r requirements_dev.txt | |
- name: Check code | |
run: make check | |
- name: Make package | |
run: make dist | |
publish: | |
needs: [test] | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Bump version and push tag | |
uses: rhasspy/rhasspy-tag-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
id: bump_tag | |
- name: Set up Python 3.8 | |
if: steps.bump_tag.outputs.new_tag | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Python dependencies | |
if: steps.bump_tag.outputs.new_tag | |
run: make install | |
- name: Make package | |
if: steps.bump_tag.outputs.new_tag | |
run: make dist | |
- name: Publish package to PyPI | |
if: steps.bump_tag.outputs.new_tag | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.pypi_password }} |