Skip to content

Add better reflect instructions to README.md #23

Add better reflect instructions to README.md

Add better reflect instructions to README.md #23

Workflow file for this run

name: Build
on:
push:
paths-ignore::
- "README.md"
jobs:
lint:
name: Run lint checks
runs-on: [ ubuntu-latest ]
steps:
- name: Lint
uses: actions/[email protected]
- run: make lint
build_matrix:
needs: lint
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
target: [debug, release]
runs-on: ${{ matrix.os }}
steps:
- name: Build ${{ matrix.os }} - ${{ matrix.target }}
timeout-minutes: 6
uses: actions/[email protected]
- run: make ${{ matrix.target }}