chore: Turn off actions

This commit is contained in:
Marcel Cruz
2022-07-10 10:42:29 +02:00
parent c110a46ada
commit bbf8e42c88
3 changed files with 66 additions and 66 deletions

View File

@@ -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