From 6040a96e92d451bbbd47baa6f16906837464496e Mon Sep 17 00:00:00 2001 From: checktheroads Date: Fri, 14 Feb 2020 08:25:45 -0700 Subject: [PATCH] fix ci linting --- .github/workflows/tests.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2750362..a3a126c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,18 +21,24 @@ jobs: uses: actions/checkout@v2 with: ref: v1.0.0 + - name: Install Application + run: | + 'curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python' + poetry --version + poetry install + poetry run flake8 hyperglass # - name: Install Python Dependencies # run: | # pip install --user pipx # export PATH=/home/runner/.local/bin:$PATH # pipx ensurepath # pipx install poetry - - name: Install Application - uses: abatilo/actions-poetry@v1.5.0 - with: - python_version: 3.6.10 - poetry_version: 1.0.0 - args: install && run flake8 hyperglass + # - name: Install Application + # uses: abatilo/actions-poetry@v1.5.0 + # with: + # python_version: 3.6.10 + # poetry_version: 1.0.0 + # args: install && run flake8 hyperglass # - name: Lint # uses: abatilo/actions-poetry@v1.5.0 # with: