Remove source distribution #103
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: 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 |