Skip to content

Re-add markdownlint installation to github actions #45

Re-add markdownlint installation to github actions

Re-add markdownlint installation to github actions #45

Workflow file for this run

name: llnl-scraper

Check failure on line 1 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

(Line: 4, Col: 17): A sequence was not expected
on:
pull_request: []
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
name: Python ${{ matrix.python-version }} Tests
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install project with dev dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
npm install -g markdownlint-cli@0.33.0
- name: Run tests
run: |
make test
- name: Show scraper help
run: scraper -h