Skip to content

Commit

Permalink
fix workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
garikbesson committed Oct 29, 2024
1 parent d3ce1d9 commit 7e3477b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 133 deletions.
82 changes: 0 additions & 82 deletions .github/scripts/readme.sh

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/readme.yml

This file was deleted.

30 changes: 6 additions & 24 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,13 @@
name: Tests
on:
repository_dispatch:
types: [tests-report]
push:
pull_request_target:
types: [opened, edited]
on: push
jobs:
tests:
strategy:
matrix:
platform: [ubuntu-latest] # mac-os in development
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
env:
RUST_BACKTRACE: 1
steps:
- name: Checkout branch
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable-2020-10-08
target: wasm32-unknown-unknown
- name: Run unit tests
run: cd ft && cargo test -- --nocapture --color=always
- name: Run Rust integration tests
run: cd integration-tests/rs && cargo run --example integration-tests
- name: Run TS integration tests
run: cd integration-tests/ts && yarn && yarn test
- uses: actions/checkout@v4
- name: Install and test modules
run: |
cargo test

0 comments on commit 7e3477b

Please sign in to comment.