introduce mutex for file exports, change array tuple limit to 64 #365
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Test | |
jobs: | |
e2e-dependencies: | |
name: Run 'dependencies' end-to-end test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: dependencies e2e test | |
working-directory: e2e/dependencies/consumer | |
run: | | |
cargo t | |
tsc bindings/* --noEmit | |
e2e-workspace: | |
name: Run 'workspace' end-to-end test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: workspace e2e test | |
working-directory: e2e/workspace | |
run: | | |
cargo t | |
tsc parent/bindings/* --noEmit | |
readme-up-to-date: | |
name: Check that README.md is up-to-date | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Check that README.md is up-to-date | |
working-directory: ts-rs | |
run: | | |
cargo install cargo-readme | |
diff -u ../README.md <(cargo readme) | |
test: | |
name: Test ts-rs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --no-default-features --manifest-path ts-rs/Cargo.toml | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --all-features --manifest-path ts-rs/Cargo.toml |