Fix use of the fake tool none_of_the_others
#240
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cheshire-Cat Action on Pull Requests | |
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: | |
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 |