assimp/.github/workflows/ccpp.yml

33 lines
557 B
YAML
Raw Normal View History

2020-03-21 09:59:32 +00:00
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
2020-03-29 15:55:28 +00:00
linux:
2020-03-21 09:59:32 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake CMakeLists.txt
- name: build
run: cmake --build .
- name: test
run: cd bin && ./unit
2020-03-29 15:55:28 +00:00
mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: cmake CMakeLists.txt
- name: build
run: cmake --build .
- name: test
run: cd bin && ./unit