Update to v1.15.13 #121
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: Build gopass-hibp | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Ubuntu Dependencies | |
run: sudo apt-get install --yes git gnupg | |
- run: git config --global user.name nobody | |
- run: git config --global user.email [email protected] | |
- | |
name: Debug | |
run: | | |
echo "Go env ------------------" | |
pwd | |
echo ${HOME} | |
echo ${GITHUB_WORKSPACE} | |
echo ${GOPATH} | |
echo ${GOROOT} | |
env | |
- name: Build and Unit Test | |
run: make travis | |
windows: | |
runs-on: windows-latest | |
defaults: | |
run: | |
shell: msys2 {0} | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
release: false | |
path-type: inherit | |
install: >- | |
base-devel | |
git | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- run: git config --global user.name nobody | |
- run: git config --global user.email [email protected] | |
- name: Build and Unit Test | |
run: make test | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: MacOS Dependencies | |
run: brew install git gnupg | |
- run: git config --global user.name nobody | |
- run: git config --global user.email [email protected] | |
- name: Build and Unit Test | |
run: make travis | |
env: | |
SLOW_TEST_FACTOR: 100 | |