diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..5d925a097 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI Basic Checks +on: + push: + pull_request: + schedule: + - cron: "0 6 * * *" +jobs: + validate: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + - run: pip install yamllint + - run: | + if ls **/*.yml **/*.yaml >/dev/null 2>&1; then + yamllint . + else + echo "No YAML files found, skipping yamllint." + fi