diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 658465ca6c..2980e21e06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: - name: Download V run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_linux.zip && unzip v_linux.zip && ./v --version - name: Test V - run: ./v test v + run: ./v examples/hello_world.v && examples/hello_world macos-prebuilt: @@ -84,7 +84,15 @@ jobs: - name: Download V run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_macos.zip && unzip v_macos.zip && ./v --version - name: Test V - run: ./v test v + run: ./v examples/hello_world.v && examples/hello_world + + windows-prebuilt: + runs-on: windows-2019 + steps: + - name: Download V + run: wget https://github.com/vbinaries/vbinaries/releases/download/latest/v_windows.zip && unzip v_windows.zip && ./v.exe --version + - name: Test V + run: ./v.exe examples/hello_world.v && examples/hello_world.exe ubuntu-tcc: