Skip to content

feat: add weak type support #415

feat: add weak type support

feat: add weak type support #415

Workflow file for this run

on:
push:
branches:
- main
paths:
- 'native/**'
pull_request:
paths:
- 'native/**'
workflow_dispatch:
jobs:
lint:
name: Rust linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Run clippy
run: cargo clippy -- -D warnings
working-directory: native/yex
- name: format check
run: cargo fmt --check
working-directory: native/yex
- name: Test
run: cargo test --workspace
working-directory: native/yex