Skip to content

feat: Add PytrizeFixtureUsages command #10

feat: Add PytrizeFixtureUsages command

feat: Add PytrizeFixtureUsages command #10

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
neovim-version: [stable, nightly]
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: ${{ matrix.neovim-version }}
- name: Compile Python treesitter parser
run: |
git clone --depth 1 https://github.com/tree-sitter/tree-sitter-python /tmp/tree-sitter-python
mkdir -p parser
cc -shared -fPIC -o parser/python.so -I /tmp/tree-sitter-python/src \
/tmp/tree-sitter-python/src/parser.c /tmp/tree-sitter-python/src/scanner.c
- name: Run tests
run: make test