Also run tests on Debian testing, stable, oldstable

This commit is contained in:
Richard Hansen 2020-07-01 14:34:36 -04:00
parent 9c6c7a2b39
commit 451bdd1086

View file

@ -9,17 +9,28 @@ on:
- master - master
jobs: jobs:
test-ubuntu: test-debian-like:
strategy: strategy:
matrix: matrix:
ubuntu: image:
- 16.04 - ubuntu:latest
- latest - ubuntu:16.04
runs-on: ubuntu-${{ matrix.ubuntu }} - debian:testing
- debian:stable
- debian:oldstable
runs-on: ubuntu-latest
container:
image: ${{ matrix.image }}
steps: steps:
- name: install dependencies
run: |
apt-get update &&
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
automake \
libtest-warnings-perl \
make \
;
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: install test dependencies
run: sudo apt-get install libtest-warnings-perl
- name: autogen - name: autogen
run: ./autogen run: ./autogen
- name: configure - name: configure