diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3771140..6616f2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,6 +7,22 @@ on: branches: [ main ] jobs: + debian: + name: Debian + runs-on: ubuntu-latest + container: docker.io/library/debian:sid + steps: + - name: Checkout Source + uses: actions/checkout@v2 + - name: Update repository + run: apt-get update -y + - name: Install the basic dev packages + run: apt-get install -y equivs curl git devscripts lintian build-essential automake autotools-dev cmake g++ + - name: Install build dependencies + run: apt build-dep ./ -y + - name: Build Package + run: debuild -us -uc -b -j$(nproc) + ubuntu: name: Ubuntu runs-on: ubuntu-latest