Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tree-sitter/setup-action
Setup action for the tree-sitter library & CLI
https://github.com/tree-sitter/setup-action
actions tree-sitter
Last synced: 16 days ago
JSON representation
Setup action for the tree-sitter library & CLI
- Host: GitHub
- URL: https://github.com/tree-sitter/setup-action
- Owner: tree-sitter
- License: mit
- Created: 2024-02-27T11:46:56.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-03-31T13:10:02.000Z (8 months ago)
- Last Synced: 2024-03-31T14:24:35.888Z (8 months ago)
- Topics: actions, tree-sitter
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tree-sitter library & CLI setup
## Options
```yaml
install-cli:
description: Install the CLI
default: true
install-lib:
description: Install the library
default: true
tree-sitter-ref:
description: A tree-sitter commit, tag, or branch
default: latest
rust-toolchain:
description: Rust toolchain
default: stable
```## Example configuration
```yaml
name: Generateon:
pull_request:jobs:
generate:
name: Generate parser
runs-on: ubuntu-latest
steps:
- uses: tree-sitter/setup-action@v1
with:
install-lib: false
- run: tree-sitter generate
```