MultiMC5/.github/workflows/ccpp.yml
Petr Mrázek 6531aaa7bc
Try using github actions
Let's see how badly this goes
2019-09-19 10:56:11 +02:00

21 lines
296 B
YAML

name: Smoke test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: |
mkdir build && cd build && cmake ..
- name: build
run: |
make -j4
- name: test
run: |
ctest -V