Skip to content

[Doc] Add technical article series (Part 1 & Part 2) #114

[Doc] Add technical article series (Part 1 & Part 2)

[Doc] Add technical article series (Part 1 & Part 2) #114

Workflow file for this run

name: Build
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
build-linux:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake clang build-essential
- name: Build with Clang
run: make clang
build-macos:
runs-on: macos-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install dependencies
run: |
brew install cmake
- name: Build with Clang
run: make clang