Skip to content

Commit

Permalink
build($GitHub): update step name
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Nov 12, 2021
1 parent fe471dd commit 5671e65
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- '**.md'
- '_config.yml'
- '**.tweet'
tags: "*"
tags: '*'

jobs:
build-and-test:
Expand All @@ -26,15 +26,15 @@ jobs:
run: |
pip install pipenv
pipenv install --deploy --dev
- name: Import Sorting with isort
- name: Import Sorting with [isort]
run: pipenv run isort --recursive --diff .
- name: Code Formatting with black
- name: Code Formatting with [black]
run: pipenv run black --check .
- name: Linting with flake8
- name: Linting with [flake8]
run: pipenv run flake8
- name: Static type check
- name: Static type check with [mypy]
run: pipenv run mypy
- name: Python tests with pytest
- name: Python tests with [pytest]
run: pipenv run pytest --cov

docker-test:
Expand All @@ -45,5 +45,5 @@ jobs:
- name: Build Docker Image for Smoke Test
run: docker build . -t home_guardian:test
- name: Smoke Test Docker Image
run: |
docker run --rm home_guardian:test 10
# docker run --rm home_guardian:test
run: docker --version

0 comments on commit 5671e65

Please sign in to comment.