Skip to content

Update build-and-test.yml #29

Update build-and-test.yml

Update build-and-test.yml #29

Workflow file for this run

# Copyright (c) ONNX Project Contributors
#
# SPDX-License-Identifier: Apache-2.0
name: Build and Test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- run: cmake -GNinja -DONNX_BUILD_TESTS=ON -B build -S .
- run: cmake --build build
- run: cmake --build build -t test