Skip to content

dep: update github.com/gfleury/go-bitbucket-v1 digest to 6e30c57 #1430

dep: update github.com/gfleury/go-bitbucket-v1 digest to 6e30c57

dep: update github.com/gfleury/go-bitbucket-v1 digest to 6e30c57 #1430

Workflow file for this run

name: Testing
on: [push, pull_request]
jobs:
build:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "^1.15.5"
# Because of a bug in go-git that that makes cloning of a folder in another Windows drive letter,
# the test has to be moved and run in another folder on Windows (until the bug is fixed)
# https://github.com/go-git/go-git/issues/247
- name: Make sure the Windows test is run on the correct drive
if: matrix.os == 'windows-latest'
run: copy-item -Path "." -Destination "$env:temp\multi-gitter" -Recurse
- name: Test (Windows)
if: matrix.os == 'windows-latest'
run: $env:SKIP_TYPES='time-dependent'; cd $env:temp\multi-gitter; go test ./... -v
- name: Test (Not Windows)
if: matrix.os != 'windows-latest'
run: SKIP_TYPES=time-dependent go test ./... -v
- name: Build
run: go build main.go