setup-v icon indicating copy to clipboard operation
setup-v copied to clipboard

vlang folder removing

Open enghitalo opened this issue 1 month ago • 0 comments

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 .

enghitalo avatar Dec 15 '25 23:12 enghitalo