From 0e855ea96096fd1d429ae0c9bae265c15abcc887 Mon Sep 17 00:00:00 2001 From: Jan T Date: Sun, 4 Feb 2024 15:33:37 +0200 Subject: Create CI/CD workflow --- .github/workflows/desmoctl.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/desmoctl.yml diff --git a/.github/workflows/desmoctl.yml b/.github/workflows/desmoctl.yml new file mode 100644 index 0000000..4348672 --- /dev/null +++ b/.github/workflows/desmoctl.yml @@ -0,0 +1,20 @@ +name: desmoctl + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Install dependencies + run: make deps + + - name: Run tests + run: make test -- cgit v1.3