mirror of
https://github.com/offa/android-foss.git
synced 2026-07-21 17:35:38 +02:00
6d2e4ea8f5
Bumps [nosborn/github-action-markdown-cli](https://github.com/nosborn/github-action-markdown-cli) from 7ca86fe6cbe33f6579ac44885b5ed73746db6e42 to 85611bef0da53168168939754ff9d8f6073a8fec. - [Release notes](https://github.com/nosborn/github-action-markdown-cli/releases) - [Commits](https://github.com/nosborn/github-action-markdown-cli/compare/7ca86fe6cbe33f6579ac44885b5ed73746db6e42...85611bef0da53168168939754ff9d8f6073a8fec) --- updated-dependencies: - dependency-name: nosborn/github-action-markdown-cli dependency-version: 85611bef0da53168168939754ff9d8f6073a8fec dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
891 B
YAML
43 lines
891 B
YAML
name: ci
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
# TODO: #572 - needs improvements
|
|
# build:
|
|
# runs-on: ubuntu-latest
|
|
# name: Check
|
|
# steps:
|
|
# - name: Checkout
|
|
# uses: actions/checkout@main
|
|
# - name: Check
|
|
# run: ./check.sh
|
|
|
|
markdownlint:
|
|
runs-on: ubuntu-latest
|
|
name: Markdownlint
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@main
|
|
- name: Markdownlint
|
|
uses: nosborn/github-action-markdown-cli@85611bef0da53168168939754ff9d8f6073a8fec
|
|
with:
|
|
files: "*.md"
|
|
config_file: .markdownlint.json
|
|
|
|
ensure_sorted:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
name: Ensure sorted
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@main
|
|
- name: Ensure sorted
|
|
run: python3 ensure_sorted.py
|
|
|