Skip to content

Resolve interoperability issues. #119

Resolve interoperability issues.

Resolve interoperability issues. #119

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: "true"
- name: Build
run: cargo build
- name: Test
run: cargo test
- name: Fmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --no-deps