Merge pull request #1345 from dbungert/more-lint

workflow: +kinetic for linter
This commit is contained in:
Dan Bungert 2022-07-08 08:54:27 -06:00 committed by GitHub
commit 8b5ee61483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"