Bump pyinstaller from 3.6 to 5.13.1 #11
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 Ubuntu | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get update | |
sudo apt install python3-venv | |
- name: Install dependencies on macOS | |
if: startsWith(matrix.os, 'macos') | |
run: | | |
brew install coreutils | |
- name: Install Python dependencies | |
run: make install | |
- name: Check code | |
run: make check | |
- name: Test code | |
run: make test | |
- name: Make package | |
run: make dist | |
tagging: | |
needs: [test] | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
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 |