diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 771983f..d5c45b6 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -17,10 +17,12 @@ jobs: - name: Build go run: cd mshell && go build -o mshell - - name: Set Go PATH - run: realpath ./mshell > "$GITHUB_PATH" + - name: Set Go PATH, MSHSTDLIB + run: | + realpath ./mshell >> "$GITHUB_PATH" + printf "MSHSTDLIB=%s\n" "$(realpath ./lib/std.msh)" >> "$GITHUB_ENV" - - name: Test mshell-go + - name: Test mshell run: cd tests && ./test.sh - name: Run awk example tests