Skip to content

Create pyarmor_runtime.pyd #3

Create pyarmor_runtime.pyd

Create pyarmor_runtime.pyd #3

Workflow file for this run

name: Ruff Linter
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: 📥 Checkout Repository
uses: actions/checkout@v4
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: 📦 Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 🧪 Run Ruff
run: |
echo "🧹 Running Ruff linter..."
ruff check . --exit-zero