Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert the arithmetic tests to pure Alan #966

Merged
merged 2 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
- if: ${{ github.ref_name != 'main' }}
name: Run tests
run: cargo test --verbose
- name: Run native tests
run: cargo run -- test alan/test.ln
- name: Run js tests
run: cargo run -- test --js alan/test.ln

test-windows:
runs-on: [self-hosted, windows]
Expand All @@ -37,6 +41,10 @@ jobs:
- if: ${{ github.ref_name != 'main' }}
name: Run tests
run: cargo test --verbose
- name: Run native tests
run: cargo run --release -- test alan/test.ln
- name: Run js tests
run: cargo run --release -- test --js alan/test.ln

test-macos:
runs-on: [self-hosted, macOS]
Expand All @@ -57,6 +65,10 @@ jobs:
- if: always()
name: Stop web server
run: yarn stop-server
- name: Run native tests
run: cargo run -- test alan/test.ln
- name: Run js tests
run: cargo run -- test --js alan/test.ln

test-arm-linux:
runs-on: [self-hosted, linux, ARM64]
Expand All @@ -70,3 +82,7 @@ jobs:
- if: ${{ github.ref_name != 'main' }}
name: Run tests
run: RUST_MIN_STACK=8388608 cargo test --verbose
- name: Run native tests
run: cargo run -- test alan/test.ln
- name: Run js tests
run: cargo run -- test --js alan/test.ln
Loading
Loading