workflow: +kinetic for linter

Add a second linter container to also lint against the newer python.
This commit is contained in:
Dan Bungert 2022-07-08 08:30:29 -06:00
parent c6078bd77c
commit d8f80d1e33
1 changed files with 7 additions and 1 deletions

View File

@ -19,7 +19,13 @@ jobs:
run: sudo ./scripts/test-in-lxd.sh ${{ matrix.image }} "make check"
lint:
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
image:
- ubuntu-daily:focal # match the core snap we're running against
- ubuntu-daily:kinetic # latest
steps:
- uses: actions/checkout@v2
- name: lint
run: sudo ./scripts/test-in-lxd.sh ubuntu-daily:focal "make lint"
run: sudo ./scripts/test-in-lxd.sh ${{ matrix.image }} "make lint"