No need to add SingleWindow to .desktop, Sparrow is fixed #324
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: Lint CI | |
on: | |
pull_request: | |
push: | |
branches: [ master ] | |
paths: | |
- 'b' | |
- 'bails/.local/bin/*' | |
- '**.py' | |
jobs: | |
shell-lint: | |
name: Check shell code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint with shellcheck | |
uses: ludeeus/[email protected] | |
env: | |
SHELLCHECK_OPTS: -e 2012 -e SC2046 -e SC2086 -e SC2164 | |
with: | |
ignore_paths: | | |
./bails/.local/bin/bails-wallet | |
./bails/.local/bin/ibd-progress | |
./bails/.local/bin/backupd | |
# python-lint: | |
# name: Check Python code | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - 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 pylint | |
# - name: Lint with pylint | |
# run: pylint **/*.py |