Bump tree-sitter-spicy from c44ba5a
to 07fe81c
#374
Workflow file for this run
This file contains 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: Check | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
env: | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: -D warnings | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
key: pre-commit-cargo-${{ hashFiles('Cargo.lock') }} | |
- name: Install tree-sitter-cli | |
run: | | |
npm install -g tree-sitter-cli | |
- name: Test | |
run: cargo test | |
pre-commit: | |
name: Run pre-commit hooks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
key: pre-commit-cargo-${{ hashFiles('Cargo.lock') }} | |
- name: Install tree-sitter-cli | |
run: | | |
npm install -g tree-sitter-cli | |
- uses: actions/setup-python@v5 | |
- uses: pre-commit/[email protected] |