Skip to content

Commit

Permalink
[WORKFLOWS] adding windows + linux tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Cr0a3 committed Oct 26, 2024
1 parent 4f697b6 commit 0cdeb39
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Tests
name: Linux/Run Tests
on:
push:
branches: [ "main" ]
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/windows-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Windows/Run Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
ytest:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Rust toolchain
run: |
rustup update --no-self-update stable
- name: Build
run: cargo build --all

- name: Run tests
run: |
python tools/test.py
cargo test --all --features jit

0 comments on commit 0cdeb39

Please sign in to comment.