Skip to content

[18-stable] Update GitHub Actions Dependencies #406

[18-stable] Update GitHub Actions Dependencies

[18-stable] Update GitHub Actions Dependencies #406

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # 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