Files
python/.github/workflows/ci-workflow.yml
dependabot[bot] 9772a9c54f Bump actions/checkout from 2.4.0 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-01 16:06:06 -08:00

74 lines
2.0 KiB
YAML

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Exercises check
on:
push:
branches:
- master
- main
pull_request:
jobs:
housekeeping:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Download & Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 requests
git clone https://github.com/exercism/problem-specifications .problem-specifications
pip install -r requirements-generator.txt
# - name: Check readmes
# run: |
# ./bin/check-readmes.sh
- name: Generate tests
run: |
bin/generate_tests.py --verbose -p .problem-specifications --check
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# 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 template status
continue-on-error: true
run: |
./bin/template_status.py -v -p .problem-specifications
canonical_sync:
runs-on: ubuntu-latest
needs: housekeeping
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dataclasses package
if: ${{ matrix.python-version == '3.6' }}
run: pip install dataclasses
- name: Install pytest
run: pip install pytest~=6.2.5
- name: Check exercises
run: |
./bin/test_exercises.py