diff options
| author | Jan T <jan@jantuomi.fi> | 2024-02-04 15:33:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-04 15:33:37 +0200 |
| commit | 0e855ea96096fd1d429ae0c9bae265c15abcc887 (patch) | |
| tree | 33f37c83ae22c143d0144f80fe06b411b2990cad /.github | |
| parent | eb69f86c76a11a0e3c28fe4c1d42fd917950168e (diff) | |
Create CI/CD workflow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/desmoctl.yml | 20 |
1 files changed, 20 insertions, 0 deletions
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 |
