Skip to content

Commit 738e955

Browse files
Diego ArdilaDiego Ardila
authored andcommitted
rename to fix discovery of yml
1 parent d112c24 commit 738e955

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.circleci/config.yaml renamed to .circleci/config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,24 @@ version: 2.1
44
jobs:
55
build_test:
66
docker:
7-
- image: cimg/python:3.6
7+
- image: python:3.9-slim-buster
88
resource_class: small
99
steps:
1010
- checkout # checkout source code to working directory
1111
- run:
1212
name: Install Environment Dependencies
13-
command: | # install env dependencies
13+
command: | # install dependencies
14+
pip install --upgrade pip
1415
pip install poetry
1516
poetry install
1617
- run:
1718
name: Black Formatting Check # Only validation, without re-formatting
1819
command: |
19-
black --check -t py36 .
20+
poetry run black --check -t py36 .
2021
- run:
2122
name: Flake8 Lint Check # Uses setup.cfg for configuration
2223
command: |
23-
flake8 . --count --statistics
24+
poetry run flake8 . --count --statistics
2425
# TODO: fix pylint. and add a mypy check.
2526
# - run:
2627
# name: Pylint Lint Check # Uses .pylintrc for configuration

0 commit comments

Comments
 (0)