Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ jobs:
with:
version: 0.15.0

- name: Install V
run: |
git clone --depth 1 https://github.com/vlang/v /tmp/vlang
cd /tmp/vlang && make && sudo cp v /usr/local/bin/

- name: Install Deno
uses: denoland/setup-deno@5fae568d37c3b73e0e4ca63d4e2c4e324a2b3497 # v2
with:
Expand Down
20 changes: 0 additions & 20 deletions .github/workflows/zig-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,23 +70,3 @@ jobs:

- name: Run benchmarks
run: cd ffi/zig && zig build bench

v-lang-check:
name: V-lang Adapter Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install V-lang
run: |
sudo apt-get update && sudo apt-get install -y libgc-dev
git clone --depth=1 https://github.com/vlang/v
cd v && make && sudo ./v symlink
cd ..

- name: Check LSP/DAP/BSP Adapters
run: |
for cart in lsp-mcp dap-mcp bsp-mcp; do
echo "Checking $cart adapter..."
v check cartridges/$cart/adapter/*.v
done
Loading