Skip to content

Merge pull request #149 from fmount/gather-db-harden #372

Merge pull request #149 from fmount/gather-db-harden

Merge pull request #149 from fmount/gather-db-harden #372

Workflow file for this run

name: Sanity Check
on: [push, pull_request]
jobs:
make_check:
name: check for issues in the collection_scripts
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11"]
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- name: Setup python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: sudo apt-get install -y make
- name: Install tox and any other packages
run: pip install tox
- name: Run ShellCheck
run: make check
- name: Run PyTest
run: make pytest