33 lines
746 B
YAML
33 lines
746 B
YAML
name: Test Suite
|
|
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-unit:
|
|
name: Lint, Unit
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
- "3.9"
|
|
- "3.10"
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python }}
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install tox
|
|
- name: Run lint and unit tests
|
|
run: tox -vve lint, unit
|