From 4aa06f524ce93d21c193ec3cec9dae40674ab239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Lindstr=C3=B6m?= Date: Fri, 20 Dec 2019 17:44:40 +0800 Subject: [PATCH] Create ccpp.yml Add a test workflow --- .github/workflows/ccpp.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ccpp.yml diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 000000000..fdd5a6b7c --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,16 @@ +name: C/C++ CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: tomahawkmusicplayer/ubuntu:latest + env: + MIX_ENV: test + steps: + - name: Checkout code + uses: actions/checkout@master + - name: Build and test + run: /usr/local/bin/build-and-test.sh