1.4.0 release #82
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
################################################################################## | |
# | |
# Olza Logistic's Pickup Points API client | |
# | |
# @author Marcin Orlowski <marcin.orlowski (#) develart (.) cz> | |
# @copyright 2022-2024 DevelArt | |
# @license http://www.opensource.org/licenses/mit-license.php MIT | |
# @link https://github.com/develart-projects/pickup-points-api-client/ | |
# | |
################################################################################## | |
# | |
# Runs markdownlint on all *.md files | |
# | |
name: "Markdown Lint" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: "Checkout repository..." | |
uses: actions/checkout@v3 | |
# https://github.com/marketplace/actions/my-markdown-linter | |
- name: "Running markdown linter..." | |
uses: ruzickap/action-my-markdown-linter@v1 | |
with: | |
exclude: vendor | |
config_file: .markdownlint.yaml.dist |