urlwatch #20
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: MacOS Workflow | |
on: [push] | |
jobs: | |
shellcheck: | |
name: runner / shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: shellcheck | |
uses: reviewdog/action-shellcheck@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
path: "." | |
pattern: "*.sh" | |
exclude: "./.git/*" | |
check_all_files_with_shebangs: "false" | |
dotfiles: | |
name: dotfiles | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: install software updates | |
run: make software_update | |
- name: install dependencies | |
run: make install_dependencies | |
- name: install apps | |
run: make install_apps | |
- name: configure apps | |
run: make configure_apps | |
- name: apply custom preferences | |
run: make apply_preferences |