β¬οΈ Bump DavidAnson/markdownlint-cli2-action from 17.0.0 to 18.0.0 (#126) #238
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: Build package | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- LICENSE | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- LICENSE | |
jobs: | |
lint: | |
name: Run linters | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
session: | |
- black | |
- mypy | |
- ruff | |
fail-fast: false | |
steps: | |
- name: Check out π | |
uses: actions/[email protected] | |
- name: Set up Python π | |
uses: actions/[email protected] | |
with: | |
cache: pip | |
- name: Install Nox π¦ | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install nox | |
- name: Run Nox π¦ | |
run: | |
nox -s ${{ matrix.session }} | |
test: | |
name: Run tests | |
runs-on: ${{ matrix.platform }} | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
fail-fast: false | |
steps: | |
- name: Check out π | |
uses: actions/[email protected] | |
- name: Set up Python π | |
uses: actions/[email protected] | |
with: | |
python-version: | | |
3.10 | |
3.11 | |
3.12 | |
cache: pip | |
- name: Install Nox π¦ | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install nox | |
- name: Run Nox π¦ | |
run: | |
nox -s test | |
- name: Upload coverage reports to Codecov β±οΈ | |
if: ${{ matrix.platform == 'ubuntu-latest' }} | |
uses: codecov/[email protected] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |