Merge pull request #380 from x-motemen/tagpr-from-v1.5.0 #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
name: integration | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: macos-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup go | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: go.mod | |
- name: install | |
run: | | |
make install | |
brew reinstall git || true | |
brew link --overwrite git | |
brew install git-svn mercurial fossil breezy darcs | |
- name: test | |
run: PATH=$HOME/bin:$PATH ./misc/author/integration_test.sh |