mirror of
https://github.com/array-in-a-matrix/public-apis.git
synced 2025-04-02 11:11:50 -04:00
chore: Turn off actions
This commit is contained in:
parent
c110a46ada
commit
bbf8e42c88
3 changed files with 66 additions and 66 deletions
52
.github/workflows/test_of_push_and_pull.yml
vendored
52
.github/workflows/test_of_push_and_pull.yml
vendored
|
@ -1,37 +1,37 @@
|
|||
name: "Tests of push & pull"
|
||||
name: 'Tests of push & pull'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
push:
|
||||
# branches: [ main ]
|
||||
pull_request:
|
||||
# branches: [ main ]
|
||||
|
||||
env:
|
||||
FILENAME: README.md
|
||||
FILENAME: README.md
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
name: 'Validate README.md changes'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
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: 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: Install dependencies
|
||||
run: python -m pip install -r scripts/requirements.txt
|
||||
|
||||
- name: Validate Markdown format
|
||||
run: python scripts/validate/format.py ${FILENAME}
|
||||
- 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: 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'
|
||||
- name: Checking if push changes are duplicated
|
||||
run: python scripts/validate/links.py ${FILENAME} --only_duplicate_links_checker
|
||||
if: github.event_name == 'push'
|
||||
|
|
44
.github/workflows/test_of_validate_package.yml
vendored
44
.github/workflows/test_of_validate_package.yml
vendored
|
@ -1,29 +1,29 @@
|
|||
name: "Tests of validate package"
|
||||
name: 'Tests of validate package'
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
push:
|
||||
# branches: [ main ]
|
||||
pull_request:
|
||||
# branches: [ main ]
|
||||
|
||||
jobs:
|
||||
unittest:
|
||||
name: 'Run tests of validate package'
|
||||
runs-on: ubuntu-latest
|
||||
unittest:
|
||||
name: 'Run tests of validate package'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
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: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.8'
|
||||
|
||||
- name: Run Unittest
|
||||
run: |
|
||||
cd scripts
|
||||
python -m unittest discover tests/ --verbose
|
||||
- name: Install dependencies
|
||||
run: python -m pip install -r scripts/requirements.txt
|
||||
|
||||
- name: Run Unittest
|
||||
run: |
|
||||
cd scripts
|
||||
python -m unittest discover tests/ --verbose
|
||||
|
|
36
.github/workflows/validate_links.yml
vendored
36
.github/workflows/validate_links.yml
vendored
|
@ -1,28 +1,28 @@
|
|||
name: "Validate links"
|
||||
name: 'Validate links'
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
# schedule:
|
||||
workflow_dispatch:
|
||||
# schedule:
|
||||
# - cron: '0 0 * * *'
|
||||
|
||||
env:
|
||||
FILENAME: README.md
|
||||
FILENAME: README.md
|
||||
|
||||
jobs:
|
||||
validate_links:
|
||||
name: 'Check all links are working'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
validate_links:
|
||||
name: 'Check all links are working'
|
||||
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: 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: Install dependencies
|
||||
run: python -m pip install -r scripts/requirements.txt
|
||||
|
||||
- name: Validate all links from README.md
|
||||
run: python scripts/validate/links.py ${FILENAME}
|
||||
- name: Validate all links from README.md
|
||||
run: python scripts/validate/links.py ${FILENAME}
|
||||
|
|
Loading…
Add table
Reference in a new issue