Browse Source

removing github data dir

Nicole Portas 1 tháng trước cách đây
mục cha
commit
cadc5c4efe
1 tập tin đã thay đổi với 0 bổ sung27 xóa
  1. 0 27
      .github/workflows/linting.yml

+ 0 - 27
.github/workflows/linting.yml

@@ -1,27 +0,0 @@
-name: Linting
-
-on:
-  push:
-    branches: [ main ]
-  pull_request:
-    branches: [ main ]
-
-jobs:
-  flake8:
-    runs-on: ubuntu-24.04
-    
-    steps:
-    - name: Checkout code
-      uses: actions/checkout@v4
-      
-    - name: Set up Python
-      uses: actions/setup-python@v5
-      with:
-        python-version: '3.10'
-        
-    - name: Install flake8
-      run: pip install flake8
-        
-    - name: Run flake8
-      run: |
-        flake8 . --count --show-source --statistics