Skip to content

build cicd workflow #16

build cicd workflow

build cicd workflow #16

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build-on-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install CMake
run: sudo apt-get -y install cmake
- name: Build Project
run: |
cmake .
make
build-on-windows:

Check failure on line 22 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 22, Col: 5): Unexpected value 'build-on-windows'
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install CMake
run: choco install cmake
- name: Build Project
run: |
cmake .
make