feat(#14): do not generate unused imported return bindings in TS #125
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
name: Tests | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
cargo-check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Install Rust | |
# uses: oxidecomputer/actions-rs_toolchain@oxide/master | |
- name: Cache rust artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: cargo-check | |
- name: Run cargo check | |
run: cargo check --color always --all --all-targets | |
cargo-test: | |
name: Test - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Install Rust | |
# uses: oxidecomputer/actions-rs_toolchain@oxide/master | |
# with: | |
# profile: minimal | |
- name: Cache rust artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: cargo-test-${{ matrix.os }} | |
- name: Run cargo test | |
run: cargo test |