Skip to content

use the same RDF for rust, python and JS try out #12

use the same RDF for rust, python and JS try out

use the same RDF for rust, python and JS try out #12

Workflow file for this run

name: Lint and Test
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
jobs:
fmt:
name: fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update
- run: rustup component add rustfmt
- run: cargo fmt -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup update
- run: rustup component add clippy
- run: cargo clippy --all --all-targets --all-features
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- run: rustup update
- run: cargo build --all-features
- run: cargo test --verbose --all --all-features
env:
RUST_BACKTRACE: 1