Skip to content

Commit

Permalink
Fix CI (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchpaulus authored Dec 9, 2024
1 parent 86d0d25 commit d59eb63
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d59eb63

Please sign in to comment.