Skip to content

SaS

SaS #120

Workflow file for this run

name: CI-workflow
on:
pull_request:
push:
branches:
- develop
- feature/update-shell-linter
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
uses: Azbagheri/shell-linter@develop
with:
exclude-paths: "tests/shunit2,testdata/html_response,LICENSE"
exclude-issues: "SC2034,SC1091"
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run tests
run: ./tests/test_runner
shell: bash
needs: lint