Skip to content

Commit

Permalink
ci: add github job to validate client_schemas on push and PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garner-canonical committed Oct 9, 2024
1 parent d0fa29f commit 34ec896
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,25 @@ jobs:
run: |
make build-test
validate:
name: Validate
runs-on: ubuntu-latest
strategy:
matrix:
python:
- "3.10"
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install tox
- name: Run validation tests
run: tox -e validate

unit-tests:
needs: lint
name: Unit tests
Expand Down

0 comments on commit 34ec896

Please sign in to comment.