From 9af4a48f1f5776f7a6104dc99f95aa192ebdbbef Mon Sep 17 00:00:00 2001 From: Jonatandb Date: Tue, 17 Jan 2023 10:19:48 -0300 Subject: [PATCH] Delete test_of_push_and_pull.yml --- .github/workflows/test_of_push_and_pull.yml | 37 --------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/test_of_push_and_pull.yml diff --git a/.github/workflows/test_of_push_and_pull.yml b/.github/workflows/test_of_push_and_pull.yml deleted file mode 100644 index 4ee1316f..00000000 --- a/.github/workflows/test_of_push_and_pull.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: "Tests of push & pull" - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -env: - FILENAME: README.md - -jobs: - tests: - name: 'Validate README.md changes' - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.8' - - - name: Install dependencies - run: python -m pip install -r scripts/requirements.txt - - - name: Validate Markdown format - run: python scripts/validate/format.py ${FILENAME} - - - name: Validate pull request changes - run: scripts/github_pull_request.sh ${{ github.repository }} ${{ github.event.pull_request.number }} ${FILENAME} - if: github.event_name == 'pull_request' - - - name: Checking if push changes are duplicated - run: python scripts/validate/links.py ${FILENAME} --only_duplicate_links_checker - if: github.event_name == 'push'