diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index ece2c38..8d40e34 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -13,6 +13,17 @@ on: - published jobs: + + test: + if: github.ref == 'refs/heads/master' && contains(github.event.head_commit.message, '[latest]:') + runs-on: ubuntu-latest + steps: + - name: quick test + shell: bash + run: | + echo "It worked!" + + build: runs-on: ${{ matrix.os }}