Skip to content

Add qlty code quality configuration and GitHub Actions workflow #3

Add qlty code quality configuration and GitHub Actions workflow

Add qlty code quality configuration and GitHub Actions workflow #3

Workflow file for this run

name: Code Quality Check
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
qlty:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install qlty
run: |
# Download qlty binary directly
curl -L https://github.com/qlty-sh/qlty/releases/latest/download/qlty-linux-amd64 -o qlty
chmod +x qlty
sudo mv qlty /usr/local/bin/
- name: Run qlty check
run: qlty check