supercop

Basic CLI for supercop
git clone git://git.finwo.net/app/supercop
Log | Files | Refs | README | LICENSE

commit 871679c08ab1df6d75abea76e2c1601e479574af
parent 943d268d31434e07e658940513cc93fdc4820d28
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Sun, 29 Jan 2023 21:23:29 +0100

Added workflow to check wither this repo builds

Diffstat:
A.github/workflows/continuous-integration.yml | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + - main + +jobs: + + test: + name: will-it-make + description: Simple test to see if the whole project even builds + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: finwo/dep@edge + - run : dep install + - run : make clean + - run : make