Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
chore: disable shellcheck SC1090
Browse files Browse the repository at this point in the history
  • Loading branch information
artemrys authored and Artem Rys committed Sep 17, 2021
1 parent 52ac6f8 commit 734d523
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,15 @@ jobs:
- name: Install Poetry
run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
- name: Install Code
run: source "$HOME/.poetry/env"; poetry install
run: |
# shellcheck disable=SC1090
source "$HOME/.poetry/env"
poetry install
- name: Run Pytest with coverage
run: source "$HOME/.poetry/env"; poetry run pytest --cov=./ --cov-report=xml --junitxml=test-results/junit.xml
run: |
# shellcheck disable=SC1090
source "$HOME/.poetry/env"
poetry run pytest --cov=./ --cov-report=xml --junitxml=test-results/junit.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down Expand Up @@ -156,7 +162,10 @@ jobs:
- name: Install Poetry
run: curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
- name: Install Code
run: source "$HOME/.poetry/env"; poetry build
run: |
# shellcheck disable=SC1090
source "$HOME/.poetry/env"
poetry build
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
Expand Down

0 comments on commit 734d523

Please sign in to comment.