Skip to content

[chore] build images for PRs #2181

[chore] build images for PRs

[chore] build images for PRs #2181

Workflow file for this run

# Copyright The OpenTelemetry Authors
# SPDX-License-Identifier: Apache-2.0
name: Checks
on:
pull_request:
branches: [ main ]
jobs:
build_images:
uses: ./.github/workflows/build-images.yml

Check failure on line 11 in .github/workflows/checks.yml

View workflow run for this annotation

GitHub Actions / Checks

Invalid workflow file

The workflow is not valid. In .github/workflows/checks.yml (Line: 11, Col: 11): Error from called workflow open-telemetry/opentelemetry-demo/.github/workflows/build-images.yml@94229159e4acb718c8ec79e80d19f912524e0eed (Line: 8, Col: 15): Unexpected value 'bool'
markdownlint:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v3
- name: install dependencies
run: npm install
- name: run markdownlint
run: make markdownlint
yamllint:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: install yamllint
run: make install-yamllint
- name: run yamllint
run: yamllint . -f github
misspell:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v3
- name: run misspell
run: make misspell
markdownlinkcheck:
name: markdownlinkcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run link check
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'no'
use-verbose-mode: 'yes'
config-file: '.github/.mlc_config.json'
sanity:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: run sanitycheck.py
run: python3 ./internal/tools/sanitycheck.py
checklicense:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v3
- name: install tools
run: make install-tools
- name: run checklicense
run: make checklicense