Skip to content

Add GitHub Actions workflows for formatting, linting, and test covera… #2

Add GitHub Actions workflows for formatting, linting, and test covera…

Add GitHub Actions workflows for formatting, linting, and test covera… #2

Workflow file for this run

name: Linting Check
on: [pull_request]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run ruff check
run: ruff check .