ci: make sure apt works in noninteractive mode
This commit is contained in:
parent
b89e9196f9
commit
d68a4af4b6
1 changed files with 5 additions and 2 deletions
7
.github/workflows/crystal.yml
vendored
7
.github/workflows/crystal.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue