Update the Rust setup for Mac #191
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run ShellCheck | |
run: | | |
shopt -s globstar | |
# SC1071 is for: | |
# "ShellCheck only supports sh/bash/dash/ksh scripts. Sorry!" | |
# But mac.sh is a Zsh script | |
shellcheck -e SC1090 -e SC1071 **/*.sh |