fix(apn): write with utf-8 encoding #463
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
on: [push, pull_request] | |
name: ShellCheck scripts | |
jobs: | |
shellCheck: | |
name: ShellCheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run shellcheck. | |
run: | | |
while read -r script; do shellcheck --exclude=SC1090,SC1091 $script; done < files |