Skip to content

Commit 4a88543

Browse files
committed
Update build-coq-demo.yml
* Use docker-coq-action v1.2.2
1 parent f7b099c commit 4a88543

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/build-coq-demo.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,25 @@ jobs:
5959
fail-fast: false
6060
steps:
6161
- uses: actions/checkout@v2
62-
- uses: coq-community/docker-coq-action@split-script
62+
- uses: coq-community/docker-coq-action@v1
6363
with:
6464
opam_file: './coq-demo.opam'
6565
custom_image: ${{ matrix.image }}
6666
# Dummy test for https://github.com/coq-community/docker-coq-action/pull/33
6767
before_install: |
68-
sudo apt-get update -y -q
69-
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y -q --no-install-recommends emacs
68+
startGroup "Install APT dependencies"
69+
sudo apt-get update -y -q
70+
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y -q --no-install-recommends emacs
71+
endGroup
7072
before_script: |
71-
${{matrix.matrix_script}}
72-
opam config report
73+
startGroup "Preliminaries"
74+
${{matrix.matrix_script}}
75+
opam config report
76+
endGroup
7377
after_script: |
74-
emacs --version
78+
startGroup "Post-test"
79+
emacs --version
80+
endGroup
7581
7682
# Remark:
7783
# you may want to add the following badge to your README.md:

0 commit comments

Comments
 (0)