We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5e7061 commit d348acbCopy full SHA for d348acb
.github/workflows/build-and-test.yml
@@ -21,6 +21,8 @@ jobs:
21
uses: actions/checkout@v2
22
- name: Build Docker images
23
run: "make docker-images"
24
+ - name: Fix permissions
25
+ run: "chmod -R a+wX demo-repository"
26
- name: Run learn-ocaml build on demo-repository
27
run: "docker run --rm -v $(pwd)/demo-repository:/repository learn-ocaml -- build"
28
- name: Clone learn-ocaml-corpus inside tests/corpuses
tests/runtests.sh
@@ -67,6 +67,7 @@ wait_for_it () {
67
run_server () {
68
SYNC="$srcdir"/"$dir"/sync
69
REPO="$srcdir"/"$dir"/repo
70
+ chmod -R a+w "$REPO"
71
72
mkdir "$SYNC" 2>/dev/null
73
chmod o+w "$SYNC"
0 commit comments