Define RubyParser::SyntaxError so we don't have to require ruby_parser anymore #3651
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@v4 | |
| 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 | |
| strategy: | |
| fail-fast: false | |
| 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: stable | |
| components: clippy, rustfmt | |
| - uses: actions/cache@v4 | |
| 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 }} |