feat: allow sorting by multiple fields #510
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: Quality | |
on: [push] | |
jobs: | |
check_prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install npm packages | |
run: npm install | |
- name: Check Prettier | |
run: ./node_modules/.bin/prettier --check ./pfSense-pkg-RESTAPI/files | |
check_black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable | |
lint_php: | |
runs-on: ubuntu-latest | |
needs: ["check_prettier"] | |
strategy: | |
matrix: | |
PHP_VERSION: ["8.2"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "Setup PHP ${{ matrix.PHP_VERSION }}" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.PHP_VERSION }}" | |
coverage: "none" | |
- name: "Run phplint" | |
run: | | |
curl -Ls https://github.com/overtrue/phplint/releases/download/9.0.3/phplint.phar -o /usr/local/bin/phplint | |
chmod +x /usr/local/bin/phplint | |
/usr/local/bin/phplint -vvv --no-cache | |
lint_python: | |
runs-on: ubuntu-latest | |
needs: ["check_black"] | |
strategy: | |
matrix: | |
PYTHON_VERSION: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.PYTHON_VERSION }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.PYTHON_VERSION }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run pylint | |
run: pylint $(git ls-files '*.py') | |
check_phpdoc: | |
runs-on: ubuntu-latest | |
needs: ["lint_php"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check phpdoc build | |
run: | | |
wget https://phpdoc.org/phpDocumentor.phar -O phpdoc | |
chmod +x ./phpdoc | |
./phpdoc |