fix nonbot-commits check for git@ repo urls #130
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
# This isn't a reusable workflow but a CI action for this repo itself - testing the contained workflows & scripts. | |
name: Script Tests | |
on: | |
push: | |
jobs: | |
updater: | |
name: Updater @ ${{ matrix.host }} | |
runs-on: ${{ matrix.host }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
host: | |
- ubuntu | |
- macos | |
- windows | |
steps: | |
- run: git config --global core.autocrlf false | |
- uses: actions/checkout@v3 | |
- name: Install make | |
if: ${{ matrix.host == 'macos' }} | |
run: | | |
brew install make | |
echo "$(brew --prefix)/opt/make/libexec/gnubin" >> $GITHUB_PATH | |
- run: make test | |
working-directory: updater |