fix bug on module-dependency creation with preprocessing conditionals #14
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python package | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [2.7, 3.6, 3.7, 3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install pybuilder | |
- name: Test build package | |
run: | | |
pyb | |
- name: Test install package on Linux/macOS | |
if: startsWith(runner.os, 'Linux') || startsWith(runner.os, 'macOS') | |
run: | | |
cd release | |
cd $(ls -d FoBiS-*) | |
python setup.py install | |
- name: Test install package on Windows | |
if: startsWith(runner.os, 'Windows') | |
run: | | |
cd release | |
cd $(ls -Directory FoBiS-*) | |
python setup.py install | |
- name: Test FoBiS.py -h | |
shell: bash | |
run: | | |
python --version | |
pip list | |
FoBiS.py -v | |
FoBiS.py -h |