Revert "chore: add zvm bin path" #7
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] | |
jobs: | |
test-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: clone zvm | |
run: git clone https://github.com/weskoerber/zvm -b chore/actions-test | |
- name: install zig | |
run: ./zvm/zvm --verbose install --use master | |
- name: print zig version | |
run: zig version | |
# - name: install zig | |
# uses: weskoerber/setup-zig@main | |
# - name: test | |
# run: zig build -Dexamples=true |