Fix spacing in the generated #each_child_node and add vendor to .gitignore #3717
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: Rust bindings | |
| on: | |
| push: | |
| paths: | |
| - ".github/workflows/rust-bindings.yml" | |
| - "include/" | |
| - "src/" | |
| - "rust/" | |
| - "*akefile*" | |
| branches: | |
| - main | |
| pull_request: | |
| env: | |
| RUSTFLAGS: "-D warnings" | |
| jobs: | |
| test: | |
| name: cargo:test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4 | |
| bundler-cache: true | |
| - name: Set up Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| targets: wasm32-wasip1 | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }} | |
| - name: Run tests | |
| run: bundle exec rake cargo:test | |
| - name: Run examples | |
| if: ${{ matrix.os != 'windows-latest' }} | |
| run: bundle exec rake cargo:examples | |
| lint: | |
| name: cargo:lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4 | |
| bundler-cache: true | |
| - name: Set up Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: "1.91.1" | |
| components: clippy, rustfmt | |
| - uses: actions/cache@v5 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo--${{ hashFiles('**/Cargo.toml') }} | |
| - name: rake cargo:build | |
| run: bundle exec rake cargo:build | |
| - name: rake cargo:lint | |
| run: bundle exec rake cargo:lint | |
| sanitize: | |
| name: cargo:sanitize:${{ matrix.sanitizer }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| sanitizer: [address] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4 | |
| bundler-cache: true | |
| - name: rake cargo:build | |
| run: bundle exec rake cargo:build | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| target: "x86_64-unknown-linux-gnu" | |
| components: "rust-src" | |
| - name: Test with sanitizer | |
| run: bundle exec rake cargo:sanitize:${{ matrix.sanitizer }} |