Skip to content

query foreign

query foreign #39

Workflow file for this run

name: Test
on:
push:
jobs:
test-native:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Install testing utility
run: cargo install cargo-all-features
- name: Test
uses: actions-rs/cargo@v1
with:
command: test-all-features
args: --workspace --all-targets
- name: Test documentation
uses: actions-rs/cargo@v1
with:
command: test
args: --doc --all-features