File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,18 @@ permissions: # added using https://github.com/step-security/secure-workflows
6
6
contents : read
7
7
8
8
jobs :
9
+ docker :
10
+ timeout-minutes : 10
11
+ name : Test docker compose up
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - name : " Checkout ${{ github.ref }} ( ${{ github.sha }} )"
15
+ uses : actions/checkout@v3
16
+ - name : Start containers
17
+ run : docker-compose -f "docker-compose.yml" up -d --build
18
+ - name : Stop containers
19
+ if : always()
20
+ run : docker-compose -f "docker-compose.yml" down
9
21
markdown-link-check :
10
22
name : Check for broken links in Markdown files
11
23
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ RUN apk --no-cache add \
21
21
git
22
22
23
23
# Build and install LLVM
24
- RUN wget --progress=dot:giga "https://github.com/llvm/llvm-project/archive/llvmorg-${LLVM_VERSION}.tar.gz" || { echo "Error downloading LLVM version ${LLVM_VERSION}" ; exit 1; }
24
+ RUN wget -q "https://github.com/llvm/llvm-project/archive/llvmorg-${LLVM_VERSION}.tar.gz" || { echo "Error downloading LLVM version ${LLVM_VERSION}" ; exit 1; }
25
25
26
26
RUN tar zxf llvmorg-${LLVM_VERSION}.tar.gz && rm llvmorg-${LLVM_VERSION}.tar.gz
27
27
Original file line number Diff line number Diff line change 1
- version : ' 3.8 '
1
+ version : ' 3.9 '
2
2
3
3
services :
4
4
one :
You can’t perform that action at this time.
0 commit comments