From d68a4af4b64e93c25844548771ea4d784a1ee273 Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sun, 6 Feb 2022 13:21:57 +0100 Subject: [PATCH] ci: make sure apt works in noninteractive mode --- .github/workflows/crystal.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml index ce992f9..78c53c6 100644 --- a/.github/workflows/crystal.yml +++ b/.github/workflows/crystal.yml @@ -6,6 +6,9 @@ on: pull_request: branches: [ master ] +env: + DEBIAN_FRONTEND: noninteractive + jobs: test: runs-on: ubuntu-latest @@ -18,7 +21,7 @@ jobs: - name: Install system dependencies run: | apt-get update - apt-get install cmake + apt-get install -y cmake - name: Install project dependencies run: shards install - name: Run tests @@ -36,7 +39,7 @@ jobs: - name: Install system dependencies run: | apt-get update - apt-get install cmake + apt-get install -y cmake - name: Install project dependencies run: shards install