Skip to content

Bump flake8 from 7.0.0 to 7.1.0 in /semantic-conventions (#329) #562

Bump flake8 from 7.0.0 to 7.1.0 in /semantic-conventions (#329)

Bump flake8 from 7.0.0 to 7.1.0 in /semantic-conventions (#329) #562

Workflow file for this run

name: Markdown checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths:
- .github/workflows/markdownlint.yml
- .markdownlint.yaml
- '**.md'
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v4
- name: install markdownlint
run: sudo npm install -g markdownlint-cli
- name: run markdownlint
run: markdownlint '**.md' --ignore 'node_modules/**'