Skip to content

Merge pull request #4 from RiccardoBiondi/dev #48

Merge pull request #4 from RiccardoBiondi/dev

Merge pull request #4 from RiccardoBiondi/dev #48

Workflow file for this run

name: Windows CI TF
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev]
jobs:
build:
runs-on: ${{matrix.cfg}}
name: ${{matrix.cfg}}
strategy:
matrix:
cfg: [windows-latest]
python-version: [3.8, 3.9, '3.10', '3.11']
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up python${{matrix.python-version}}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install -r requirements.txt
- name: Install Tenrflow Keras
run:
python -m pip install tensorflow keras
- name: Install Catopuma
run: |
python setup.py develop --user
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
# flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
python -m pytest
env:
CATOPUMA_FRAMEWORK: tf.keras