fix(release): render homebrew formula from local artifacts #275
Workflow file for this run
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| zig: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: mlugg/setup-zig@v2 | |
| with: | |
| version: 0.16.0 | |
| - run: ./scripts/zig build | |
| - run: ./scripts/zig build test | |
| rust-daemon: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Rust daemon tests | |
| working-directory: orca-rs | |
| run: cargo test | |
| - name: Rust daemon clippy | |
| working-directory: orca-rs | |
| run: cargo clippy --all-targets |