Implement configuration of control plane services #1
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: Inclusive Naming, Lint | |
on: [pull_request] | |
jobs: | |
call-inclusive-naming-check: | |
name: Inclusive Naming | |
uses: canonical-web-and-design/Inclusive-naming/.github/workflows/woke.yaml@main | |
with: | |
fail-on-error: "true" | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Dependencies | |
run: | | |
pip install tox | |
- name: Lint | |
run: tox -vve lint |