Skip to content

update: path correction #2

update: path correction

update: path correction #2

Workflow file for this run

name: Camke Build test
on:
push:
branches: [ "Master" ]
pull_request:
branches: [ "Master" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Configure CMake
run: |
cmake -S NeuralNetwork -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: |
cmake --build build --config Release