Merge pull request #151 from OpenVoiceOS/release-1.1.5a1 #416
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: Run Build Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- dev | |
paths-ignore: | |
- 'ovos_plugin_common_play/version.py' | |
- 'test/**' | |
- 'examples/**' | |
- '.github/**' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'CHANGELOG.md' | |
- 'MANIFEST.in' | |
- 'README.md' | |
- 'scripts/**' | |
workflow_dispatch: | |
jobs: | |
build_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Build Tools | |
run: | | |
python -m pip install build wheel | |
- name: Build Distribution Packages | |
run: | | |
python setup.py bdist_wheel | |
- name: Install package | |
run: | | |
pip install . |