Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Toggle all files at once via Alt+click in PR files (#991) #16

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/css_style.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
from collections import OrderedDict
import time

errors = 0

Expand Down Expand Up @@ -55,6 +56,7 @@ def processFile(path):


def searchDirectory(path="./"):
time.sleep(1)
for item in os.listdir(path):
if os.path.isdir(path + item):
searchDirectory(path + item + "/")
Expand All @@ -65,4 +67,8 @@ def searchDirectory(path="./"):
searchDirectory()

print(f"{errors} erroneous files found.")

print("test delay")

time.sleep(600)
exit(0 if not errors else 1)
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: Test
on:
push:
branches:
- master
- "**"
pull_request:
branches:
- master
- "**"

jobs:
run-linters:
Expand Down
Empty file added a.txt
Empty file.
Loading