delete misleading words in exception message (#1890) #2483
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: CI | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop, integration, main, feat-index-rust ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Install Rust Toolchain | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
components: rustfmt, clippy | |
target: x86_64-apple-darwin, aarch64-apple-darwin, aarch64-unknown-linux-gnu | |
cache-workspaces: "core/src/rust -> target" | |
- name: Install cargo-zigbuild | |
run: pip install cargo-zigbuild | |
- name: Run tests | |
run: .github/workflows/runtests.sh | |
- name: Coverage Reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: scoverage-report | |
path: target/scala-*/scoverage-report/** |