Add indexing for lists, strings, and literals #33
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - name: Setup .NET | |
# uses: actions/setup-dotnet@v4 | |
# with: | |
# dotnet-version: 8 | |
# - name: Build | |
# run: dotnet build | |
# - name: Set PATH | |
# run: realpath ./mshell/bin/Debug/net8.0 > "$GITHUB_PATH" | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
# - name: Test Files | |
# run: cd mshell/tests && ./test.sh | |
- name: Build go | |
run: cd mshell-go && go build -o mshell-go | |
- name: Set Go PATH | |
run: realpath ./mshell-go > "$GITHUB_PATH" | |
- name: Test mshell-go | |
run: cd mshell/tests && ./test_go.sh |