Skip to content

README: Reference blog post #48

README: Reference blog post

README: Reference blog post #48

Workflow file for this run

name: Build CLI
on:
push:
pull_request:
workflow_dispatch:
workflow_call:
jobs:
build:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- run: make -C src/cli package
- run: make -C src/cli test