Bump pyinstaller from 3.6 to 5.13.1 #83
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 | |
brew link --force gettext | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: | | |
./configure --enable-in-place | |
make | |
make install | |
pip3 install -r requirements_dev.txt | |
- name: Check code | |
run: make check | |
- name: Test code | |
run: make test | |
tagging: | |
needs: [test] | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@master | |
- name: Bump version and push tag | |
uses: rhasspy/rhasspy-tag-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
id: bump_tag | |
publish: | |
needs: [tagging] | |
runs-on: ubuntu-18.04 | |
if: needs.tagging.outputs.new_tag != '' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v1 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Python dependencies | |
run: | | |
./configure --enable-in-place | |
make | |
make install | |
- name: Make package | |
run: make dist | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.pypi_password }} |