Skip to content

Pass 'bridge' parameter down into relevant function when calling 'up'… #160

Pass 'bridge' parameter down into relevant function when calling 'up'…

Pass 'bridge' parameter down into relevant function when calling 'up'… #160

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches_ignore: []
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup black environment
run: conda create --quiet --name black
- name: Check formatting with black
run: |
export PATH="/usr/share/miniconda/bin:$PATH"
source activate black
pip install black
black --check scompose
- name: Check imports with pyflakes
run: |
export PATH="/usr/share/miniconda/bin:$PATH"
source activate black
pip install pyflakes==2.4.0
pyflakes scompose/utils
# Will have some issues
pyflakes scompose/client scompose/project scompose/config || true