fix fn call arg u32 as int #23
Workflow file for this run
This file contains 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 . |