Merge pull request #30 from NeuralEnsemble/feat/bump-inspyred #71
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: Continuous builds | |
on: | |
push: | |
branches: [ master, development ] | |
pull_request: | |
branches: [ master, development ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Print refs | |
run: | | |
echo "github.ref is: ${{ github.ref }}" | |
echo "github.base_ref is: ${{ github.base_ref }}" | |
- name: Update pip, install package | |
run: | | |
python -m pip install --upgrade pip | |
echo "Using development dependencies" | |
pip install .[dev] | |
- name: Run tests | |
run: | | |
./test.sh | |
- name: Lint with flake8 | |
run: | | |
pip install flake8 | |
flake8 . --count --exit-zero --show-source --max-line-length=127 --statistics |