setup-v
setup-v copied to clipboard
vlang folder removing
https://github.com/vlang/setup-v
It's needed to remove vlang folder after building to avoid conflicts like when running v test . (thousands more)
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up V
uses: vlang/[email protected]
- name: Remove Vlang folder to avoid conflicts
run: |
rm -rf -v ./vlang || true
- name: Run all tests
run: |
v test .