Update knot-resolver apt repos #35
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "shellcheck" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install shellcheck | |
run: sudo apt-get install shellcheck -y | |
- name: Place up-config lib file | |
run: sudo cp lib/up-config.functions /usr/local/lib/up-config.functions | |
- name: Check up-config installer | |
run: shellcheck install.sh | |
- name: Check up-config lib file | |
run: shellcheck /usr/local/lib/up-config.functions | |
- name: Check up-config | |
run: shellcheck -x lib/up-config |