Skip to content

Configure Dependabot Label to Empty #17

Configure Dependabot Label to Empty

Configure Dependabot Label to Empty #17

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-example:
name: Test Example
runs-on: ubuntu-22.04
steps:
- name: Checkout Project
uses: actions/checkout@v4.2.1
- name: Initialize Submodules
run: git submodule update --init --recursive
- name: Assert Git Submodules
run: |
ACTUAL=$(git submodule status --recursive)
EXPECTED=" bea29a84b6c55a49fef34be3e7a17498c633b6d9 project-starter (v1.2.0)"
if [ "$ACTUAL" != "$EXPECTED" ]; then
echo "actual: $ACTUAL"
echo "expected: $EXPECTED"
exit 1
fi