Skip to content

Commit

Permalink
another test
Browse files Browse the repository at this point in the history
  • Loading branch information
drkameleon committed May 21, 2024
1 parent 8a2a71c commit a7d3b25
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
31 changes: 29 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix:
os:
- ubuntu-latest
#- windows-latest
- windows-latest
- macOS-12
- macOS-14
mode:
Expand All @@ -35,4 +35,31 @@ jobs:
- uses: ./
with:
token: ${{ secrets.GITHUB_TOKEN }}
mode: ${{ matrix.mode }}
mode: ${{ matrix.mode }}

- if: matrix.os == 'windows-latest'
name: Run tests (Windows)
run: |
echo "Current directory:"
pwd
echo "Current path:"
echo $PATH

echo "Current GITHUB_PATH:"
echo $GITHUB_PATH
#echo "$HOME/.arturo/bin" >> $GITHUB_PATH
#ls $HOME/.arturo
#ls $HOME/.arturo/bin
arturo -v
arturo tests/test.art
shell: bash

- if: matrix.os != 'windows-latest'
name: Run tests (*nix)
run: |
arturo -v
arturo tests/test.art
shell: bash


1 change: 1 addition & 0 deletions test.art
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print "Yes!!!!"

0 comments on commit a7d3b25

Please sign in to comment.