Skip to content

feat: add cifs

feat: add cifs #15

---
# Template: 1.0.0
name: "Lint / ShellCheck"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
env:
DEV_CICD_DEBUG: ""
on:
pull_request:
branches:
- "main"
push:
branches:
- "feature/**"
paths:
- "src/**"
jobs:
lint-shellcheck:
runs-on: "ubuntu-latest"
steps:
- name: "Check out repository code"
uses: "actions/checkout@main"
- name: "Prepare dev environment"
run: "./bin/dev-lib-base"
- name: "Run tests"
run: "./bin/dev-lint-shellcheck"
...