Add unit tests for hint utils (#463) #61
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: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Zig | |
uses: korandoru/setup-zig@v1 | |
with: | |
zig-version: master | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Build | |
run: make build | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Zig | |
uses: korandoru/setup-zig@v1 | |
with: | |
zig-version: master | |
- name: Lint | |
run: zig fmt --check src/*.zig | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Zig | |
uses: korandoru/setup-zig@v1 | |
with: | |
zig-version: master | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Test | |
run: | | |
zig version | |
make test | |
integration_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Zig | |
uses: korandoru/setup-zig@v1 | |
with: | |
zig-version: master | |
- name: Integration test | |
run: | | |
zig version | |
make build-integration-test | |
./zig-out/bin/integration_test |