Skip to content

⬆️ Bump DavidAnson/markdownlint-cli2-action from 17.0.0 to 18.0.0 (#126) #238

⬆️ Bump DavidAnson/markdownlint-cli2-action from 17.0.0 to 18.0.0 (#126)

⬆️ Bump DavidAnson/markdownlint-cli2-action from 17.0.0 to 18.0.0 (#126) #238

Workflow file for this run

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 }}