mirror of
https://github.com/array-in-a-matrix/public-apis.git
synced 2025-04-02 11:11:50 -04:00
30 lines
735 B
YAML
30 lines
735 B
YAML
name: 'Tests of validate package'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
# push:
|
|
# branches: [ main ]
|
|
# pull_request:
|
|
# branches: [ main ]
|
|
|
|
jobs:
|
|
unittest:
|
|
name: 'Run tests of validate package'
|
|
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: Run Unittest
|
|
run: |
|
|
cd scripts
|
|
python -m unittest discover tests/ --verbose
|