diff options
Diffstat (limited to '.github/workflows/desmoctl.yml')
| -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 |
