fix fn call arg u32 as int (#22) #24
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: Test | |
| on: [push, pull_request] | |
| jobs: | |
| ubuntu-latest: | |
| runs-on: ubuntu-latest | |
| if: > | |
| github.event_name != 'push' | |
| || github.event.ref == 'refs/heads/master' | |
| || github.event.repository.full_name != 'vlang/markdown' | |
| steps: | |
| - name: Checkout Latest V | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: vlang/v | |
| path: v | |
| - name: Build V | |
| run: cd v && make && ./v symlink && cd - | |
| - name: Checkout markdown (for tests) | |
| uses: actions/checkout@v2 | |
| with: | |
| path: markdown | |
| - name: Run tests | |
| run: cd markdown && v test . |