diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-02-04 15:36:58 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2024-02-04 15:36:58 +0200 |
| commit | dd52025ef0732a64ba162010597cfaa48cfdd50e (patch) | |
| tree | 7fe2be449c31d609d283e988d795531d9037d773 /.github | |
| parent | b8cc2c18d9bc0292626a6b84e76fb39c1cd4b757 (diff) | |
CI/CD workflow fixes
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/desmoctl.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/desmoctl.yml b/.github/workflows/desmoctl.yml index 4348672..557047e 100644 --- a/.github/workflows/desmoctl.yml +++ b/.github/workflows/desmoctl.yml @@ -7,12 +7,15 @@ on: branches: [ "main" ] jobs: - build: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install Chicken + run: apt update && apt install -y chicken-bin + - name: Install dependencies run: make deps |
