Skip to content

one more stopcheck

one more stopcheck #21

Workflow file for this run

name: FuncTests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python 3.10.4
uses: actions/setup-python@v4
with:
python-version: 3.10.4
- name: Cache python
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools
python3 -m pip install Cython pylint anybadge coverage
python3 -m pip install .
- name: Running ssshtest
run: |
STOPCHECK=true bash repo_utils/tdb_ssshtests.sh
- name: Running pylint
run: |
python repo_utils/pylint_maker.py