From 052f16e528d3eec0e64a8afd01237bf0b716553e Mon Sep 17 00:00:00 2001 From: Ahmon <107814419+Ahmonemb@users.noreply.github.com> Date: Thu, 8 May 2025 14:59:52 -0700 Subject: [PATCH] Delete .github/workflows/main.yml --- .github/workflows/main.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index efb5f76..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Python application - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.13.2' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - - - name: Install Playwright browsers - run: | - python -m playwright install --with-deps - - - name: Run tests - run: | - pytest