[Feature] tree sitter markdown scan #1
Workflow file for this run
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: ci | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes | |
| - uses: cachix/cachix-action@v17 | |
| with: | |
| name: litdoc | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - run: nix develop --ignore-environment --command make fmt-check | |
| - run: nix develop --ignore-environment --command make vet | |
| - run: nix develop --ignore-environment --command make test |