Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c0be63 commit c6c7b25Copy full SHA for c6c7b25
.gitpod.yml
@@ -2,11 +2,18 @@
2
# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file)
3
# and commit this file to your remote git repository to share the goodness with others.
4
5
+ports:
6
+ - port: 7080 # coder server port
7
+ onOpen: open-preview
8
tasks:
9
- name: install depends
10
init: sudo apt install zstd && \
11
sudo wget -o /usr/local/bin/shfmt https://github.com/mvdan/sh/releases/download/v3.0.1/shfmt_v3.0.1_linux_amd64 && \
- sudo chmod /usr/local/bin/shfmt
12
+ sudo chmod +x /usr/local/bin/shfmt
13
14
+ - name: build
15
+ command: make
16
17
+ - name: test
18
+ command: docker-compose up -d
19
0 commit comments