Skip to content

Update version of tree-sitter #18

Update version of tree-sitter

Update version of tree-sitter #18

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build-tree-sitter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
- name: Build without tree-sitter
run: cargo build --no-default-features --verbose
- name: Run tests without tree-sitter
run: cargo test --no-default-features --verbose
bench:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
- name: Run dogfooding benchmarks
run: cargo bench