TheAlgorithms-C/.github/workflows/ccpp.yml
2020-04-07 22:18:08 -04:00

28 lines
484 B
YAML

name: C/C++ CI
on: [push]
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@master
with:
submodules: true
- name: build directory
run: mkdir build && cd build
- name: configure
run: cmake .
- name: build
run: cmake --build .