Skip to content

Commit

Permalink
[skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
rochacbruno committed Dec 2, 2024
1 parent 04be6d6 commit b0825e7
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/cross.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: GH Pages Deploy
name: Cross platform Test

on:
# Allows you to run this workflow manually from the Actions tab
Expand All @@ -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 🛎
Expand All @@ -27,6 +28,7 @@ jobs:
uses: Swatinem/rust-cache@v2

- name: Test 🧪
if: matrix.os != 'windows-latest'
run: cargo test

- name: Build 🔧
Expand All @@ -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
if: matrix.os == 'windows-latest'
run: dir /s site

0 comments on commit b0825e7

Please sign in to comment.