From af718224b3de87a313daac26529db3284c2e12cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 30 Jun 2020 21:51:45 +0200 Subject: [PATCH] Add fedora to ci --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 397748c..e65d8aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,3 +60,19 @@ jobs: run: make VERBOSE=1 check - name: distcheck run: make VERBOSE=1 distcheck + + test-fedora: + runs-on: ubuntu-latest + container: fedora + steps: + - uses: actions/checkout@v2 + - name: install dependencies + run: dnf install -y perl-version automake make perl-Test-Warnings + - name: autogen + run: ./autogen + - name: configure + run: ./configure + - name: check + run: make VERBOSE=1 check + - name: distcheck + run: make VERBOSE=1 distcheck