Skip to content

Release version 0.15.0 of Dlint #65

Release version 0.15.0 of Dlint

Release version 0.15.0 of Dlint #65

Workflow file for this run

name: Dlint CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: |
requirements.txt
requirements-dev.txt
- name: Run CI
run: |
python -m pip install --requirement requirements.txt
python -m pip install --requirement requirements-dev.txt
python -m pip install --editable .
python -m flake8
python -m flake8 --print-dlint-linters
python -m pytest --cov