diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index 9b0c7b1..037b760 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -1,4 +1,4 @@ -name: GH Pages Deploy +name: Cross platform Test on: # Allows you to run this workflow manually from the Actions tab @@ -14,7 +14,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + # os: [ubuntu-latest, macos-latest, windows-latest] + os: [windows-latest] runs-on: ${{ matrix.os }} steps: - name: Checkout ๐Ÿ›Ž @@ -27,6 +28,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Test ๐Ÿงช + if: matrix.os != 'windows-latest' run: cargo test - name: Build ๐Ÿ”ง @@ -36,7 +38,17 @@ jobs: run: echo "::add-path::$GITHUB_WORKSPACE/target/release" - name: Build site ๐Ÿ—๏ธ + if: matrix.os != 'windows-latest' run: marmite example site -vvvv + - name: Build site ๐Ÿ—๏ธ + if: matrix.os == 'windows-latest' + run: marmite.exe example site -vvvv + + - name: List files on site ๐Ÿ“‚ + if: matrix.os != 'windows-latest' + run: ls -R site + - name: List files on site ๐Ÿ“‚ - run: ls -R site \ No newline at end of file + if: matrix.os == 'windows-latest' + run: dir /s site \ No newline at end of file