Add instructions to enable full disk access #136
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
# For more information about the configurations used in this file, please see | |
# GitHub actions documentation. | |
# | |
# https://help.github.com/en/github/automating-your-workflow-with-github-actions/ | |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
name: tests | |
on: push | |
jobs: | |
tests: | |
runs-on: macos-11.0 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: brew install shellcheck | |
- name: Run tests | |
run: ./tests/shellcheck.sh |