We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a857cbf commit 1d08f93Copy full SHA for 1d08f93
1 file changed
.github/workflows/ci.yml
@@ -12,20 +12,20 @@ jobs:
12
repository: vlang/v
13
path: v
14
15
- - name: Checkout msgpack
16
- uses: actions/checkout@v2
17
- with:
18
- path: /home/runner/work/msgpack/msgpack/repo
19
-
20
- - name: Symlink msgpack
21
- run: ln -s /home/runner/work/msgpack/msgpack/repo ~/.vmodules/msgpack
22
23
- name: Build V
24
run: cd v && make && sudo ./v symlink && cd -
25
26
- name: V doctor
27
run: v doctor
28
+ - name: Checkout msgpack
+ uses: actions/checkout@v2
+ with:
+ path: repo
+
+ - name: Symlink msgpack
+ run: mkdir -p ~/.vmodules/ ; ln -s $(realpath repo) ~/.vmodules/msgpack
29
- name: Ensure everything is formatted
30
run: v fmt -verify ~/.vmodules/msgpack/
31
0 commit comments