Implement support for add_list #16
Workflow file for this run
This file contains hidden or 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: check and test | |
| on: | |
| pull_request: | |
| jobs: | |
| cargo_check: | |
| name: cargo check (clippy) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - run: sudo apt update && sudo apt install build-essential cmake libclang-dev libjson-c-dev | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| components: clippy | |
| - run: cargo clippy --all-features | |
| cargo_test: | |
| name: cargo test | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - run: sudo apt update && sudo apt install build-essential cmake libclang-dev libjson-c-dev | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| - run: cargo test --all-features | |
| cargo_fmt: | |
| name: cargo fmt | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| components: rustfmt | |
| - run: cargo fmt --check --verbose |