Skip to content

Remove source distribution #103

Remove source distribution

Remove source distribution #103

Workflow file for this run

name: Good First Issues
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
Linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Run Linters
run: |
RUFF_VERSION=$(grep 'ruff==' setup.py | sed -n 's/.*ruff==\([0-9.]*\).*/\1/p')
pip install ruff=="$RUFF_VERSION"
make check