Skip to content

deactivate linter workflow #300

deactivate linter workflow

deactivate linter workflow #300

Workflow file for this run

name: Cheshire-Cat Action on Pull Requests
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches: [main, develop]
push:
branches: [main, develop]
jobs:
# pylint:
# name: "Coding Standards"
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ./core
# strategy:
# matrix:
# python-version: ["3.10"]
# steps:
# - name: Download
# uses: actions/checkout@v3
# - name: Prepare Python
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# cache: 'pip'
# cache-dependency-path: pyproject.toml
# - name: Download python dependencies
# run: pip install .[dev]
# - name: Pylint
# run: pylint -f actions ./
test:

Check failure on line 36 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / Cheshire-Cat Action on Pull Requests

Invalid workflow file

The workflow is not valid. .github/workflows/pr.yml (Line: 36, Col: 3): The workflow must contain at least one job with no dependencies.
needs: [ pylint ]
name: "Run Tests"
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- name: Cat up
run: docker-compose up -d
- name: Test
run: docker exec cheshire_cat_core python -m pytest --color=yes .
- name: Cat down
run: docker-compose down