Skip to content

Refactor all metadata into pyproject.toml #361

Refactor all metadata into pyproject.toml

Refactor all metadata into pyproject.toml #361

Workflow file for this run

# ---------------------------
#
# Check the source files for quality issues
#
# ---------------------------
name: Lint
on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
- release/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flake8:
name: Flake8
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "flake8>=3.7.0"
- name: Lint with flake8
run: python -m flake8 .
rstcheck:
name: rstcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install \
"rstcheck" \
;
- name: Lint with rstcheck
run: rstcheck . --recursive --report-level severe