From f1215657d04e2611dbac339d86a53d3134440c34 Mon Sep 17 00:00:00 2001 From: Corey McCandless Date: Sun, 31 Jan 2021 16:44:32 -0500 Subject: [PATCH] re-enable disabled checks --- .github/workflows/ci-workflow.yml | 26 ++++++++++---------------- 1 file changed, 10 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 2b80a895fc..8a6e5c410e 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -28,13 +28,13 @@ jobs: git clone https://github.com/exercism/problem-specifications spec pip install -r requirements-generator.txt - - name: Check readmes - run: | - ./bin/check-readmes.sh + # - name: Check readmes + # run: | + # ./bin/check-readmes.sh - #- name: Generate tests - # run: | - # bin/generate_tests.py --verbose -p spec --check + - name: Generate tests + run: | + bin/generate_tests.py --verbose -p spec --check - name: Lint with flake8 run: | @@ -43,16 +43,10 @@ jobs: # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - #- name: Test version status - # run: | - # ./bin/check-test-version.py -p spec - - # TODO: cmccandless: directory and config.json structure changed in v3 migration, - # updates needed to tooling - # - name: Test template status - # continue-on-error: true - # run: | - # ./bin/template_status.py -v -p spec + - name: Test template status + continue-on-error: true + run: | + ./bin/template_status.py -v -p spec canonical_sync: runs-on: ubuntu-16.04