From 31187c7af765830c8cc52c525241ba05e8a8147e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Rolim?= Date: Wed, 4 Nov 2020 02:12:23 -0300 Subject: [PATCH] Add CI. --- .github/workflows/ci.yaml | 10 ++++++++++ ci/run.sh | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 .github/workflows/ci.yaml create mode 100755 ci/run.sh diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..1e45470 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,10 @@ +name: Tests +on: [push, pull_request] +jobs: + build_and_test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Build cbc-file + uses: ericonr/voidlinux-crypto-gh-action@master diff --git a/ci/run.sh b/ci/run.sh new file mode 100755 index 0000000..2fc2add --- /dev/null +++ b/ci/run.sh @@ -0,0 +1,2 @@ +#!/bin/sh -x +make all