diff options
author | Petr Mrázek <peterix@users.noreply.github.com> | 2019-09-19 10:56:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-19 10:56:11 +0200 |
commit | 6531aaa7bc845191cd97a691596b91ffa48fffb8 (patch) | |
tree | 6ce8a4e09f7de57cb71d3dc9dbeefb4aff618b28 | |
parent | a35a2e877e717087cc93257199059f6a03667e4a (diff) | |
download | MultiMC-6531aaa7bc845191cd97a691596b91ffa48fffb8.tar MultiMC-6531aaa7bc845191cd97a691596b91ffa48fffb8.tar.gz MultiMC-6531aaa7bc845191cd97a691596b91ffa48fffb8.tar.lz MultiMC-6531aaa7bc845191cd97a691596b91ffa48fffb8.tar.xz MultiMC-6531aaa7bc845191cd97a691596b91ffa48fffb8.zip |
Try using github actions
Let's see how badly this goes
-rw-r--r-- | .github/workflows/ccpp.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 00000000..af59213e --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,20 @@ +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 |