Skip to content

Commit

Permalink
Use Python3 in CircleCI config (in YAML Linter job)
Browse files Browse the repository at this point in the history
  • Loading branch information
julianguyen committed Sep 1, 2021
1 parent a00c914 commit b95d7c2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ jobs:
set -e
(cd client && yarn lint:flow && yarn lint:eslint && yarn test:circleci)
(cd client && ../tmp/cc-test-reporter format-coverage -t lcov -o ../tmp/codeclimate.frontend.json coverage/lcov.info)
# - run:
# name: Run YAML linter
# command: |
# set -e
# curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
# python get-pip.py --user
# python -m pip install --user yamllint
# cd config && yamllint locales/
- run:
name: Run YAML linter
command: |
set -e
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
python3 get-pip.py --user
python3 -m pip install --user yamllint
cd config && yamllint locales/
- persist_to_workspace:
root: tmp
paths:
Expand Down

0 comments on commit b95d7c2

Please sign in to comment.