subiquity/.github/workflows/build.yaml

26 lines
578 B
YAML
Raw Normal View History

2021-02-17 21:34:56 +00:00
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
2021-02-17 21:34:56 +00:00
strategy:
matrix:
image:
- ubuntu-daily:bionic
- ubuntu-daily:focal
- ubuntu-daily:groovy
2021-02-17 21:34:56 +00:00
- ubuntu-daily:hirsute
2021-06-02 14:03:16 +00:00
- ubuntu-daily:impish
2021-02-17 21:34:56 +00:00
steps:
- uses: actions/checkout@v2
- name: run
run: sudo ./scripts/test-in-lxd.sh ${{ matrix.image }} "make check"
2021-02-17 21:34:56 +00:00
lint:
2021-02-18 20:37:05 +00:00
runs-on: ubuntu-20.04
2021-02-17 21:34:56 +00:00
steps:
- uses: actions/checkout@v2
- name: lint
run: sudo ./scripts/test-in-lxd.sh ubuntu-daily:focal "make lint"