Skip to content

Update all non-CD actions to run against main branch #170

Update all non-CD actions to run against main branch

Update all non-CD actions to run against main branch #170

Workflow file for this run

name: Shellcheck Tests
on:
push:
branches: [ main ]
paths:
- '.github/workflows/shellcheck.yml'
- 'Makefile'
- '**.sh'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/shellcheck.yml'
- 'Makefile'
- '**.sh'
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
cache-dependency-path: |
**/requirements*.txt
pyproject.toml
- name: Test with shellcheck
run: make shellcheck