Tweak CI matrix approach to accomodate for out-of-setup_beam macos #38
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: Lint | |
"on": [push, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# uses .markdownlint.yml for configuration | |
- name: markdownlint | |
uses: DavidAnson/markdownlint-cli2-action@v11 | |
with: | |
globs: | | |
.github/**/*.md | |
*.md | |
- name: yamllint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: | | |
.github/**/*.yml | |
.*.yml | |
strict: true | |
config_file: .yamllint.yml |