Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,24 @@ jobs:
python-version: 3.7
- name: Download & Install dependencies
run: |
./bin/fetch-configlet
python -m pip install --upgrade pip
pip install flake8 requests
git clone https://github.com/exercism/problem-specifications spec
pip install -r requirements-generator.txt
- name: Check readmes
run: |
./bin/check-readmes.sh
- name: Fetch configlet
uses: exercism/github-actions/configlet-ci@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check config.json integrity
run: |
# May provide more useful output than configlet fmt
# if JSON is not valid or items are incomplete
./bin/configlet lint .
configlet lint .
# Verify correct formatting in config.json
./bin/configlet fmt . && git diff --quiet
configlet fmt . && git diff --quiet
#- name: Generate tests
# run: |
# bin/generate_tests.py --verbose -p spec --check
Expand Down