Fix profile functions that direct call a method instead of the API #373
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
markdown: | |
name: Lint Markdown | |
runs-on: ubuntu-latest | |
if: contains(github.event.head_commit.message, '[skip ci]') != true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Generate docs | |
run: cd docs && ./build_docs.sh | |
- name: Run markdownlint-cli | |
uses: nosborn/[email protected] | |
with: | |
files: . |