Skip to content

Add assembly flags #103

Add assembly flags

Add assembly flags #103

Workflow file for this run

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
name: πŸ¦€ Build and Test rust bindings
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Download the repository
uses: actions/checkout@v2
- name: πŸ¦€ Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: πŸ“₯ Setup node
uses: actions/setup-node@v1
with:
node-version: 18
- name: πŸ“₯ Install js dependencies
run: |
npm install yarn
npm install tree-sitter-cli -g
- name: 🌲 Generate the parser
run: tree-sitter generate
- name: πŸ›  Build rust bindings
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
# Run the tests
- name: πŸ§ͺ Now run the rust tests
uses: actions-rs/cargo@v1
with:
command: test