Skip to content

Update linting.

Update linting. #20

Workflow file for this run

name: Lint and test
on:
workflow_dispatch:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install dependencies ☕️
run: |
python -m pip install -U pip setuptools
python -m pip install -r requirements.txt
python -m pip install -r requirements_dev.txt
- name: Lint 🔍
run: ./tests/lint.sh
pypi:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup python 🐍
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies ☕️
run: |
pip install -U pip setuptools
pip install -U twine build
- name: Check bundling 📦
run: python -m build
- name: Check setup 🚦
run: twine check "dist/mermaidmro-*.tar.gz"
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
name: test (python ${{ matrix.python-version }})
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Python ${{ matrix.python-version }} 🐍
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies ☕️
run: |
python -m pip install -U pip setuptools
python -m pip install -r requirements.txt
python -m pip install -r requirements_dev.txt
- name: Test 🎢
run: ./tests/test.sh
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout ⬇️
uses: actions/checkout@v4
with:
persist-credentials: false
submodules: recursive
- name: Install dependencies ☕️
run: |
python -m pip install -U pip setuptools
python -m pip install -r requirements.txt
python -m pip install -r requirements_dev.txt
- name: Run coverage test 🎢
run: ./tests/coverage.sh
- name: Upload report 🔝
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
fail_ci_if_error: false