Skip to content

build(deps): bump github.com/gophercloud/gophercloud/v2 from 2.7.0 to 2.8.0 #28

build(deps): bump github.com/gophercloud/gophercloud/v2 from 2.7.0 to 2.8.0

build(deps): bump github.com/gophercloud/gophercloud/v2 from 2.7.0 to 2.8.0 #28

Workflow file for this run

on: [push, pull_request]
name: Unit Testing
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Setup environment
run: |
# Changing into a different directory to avoid polluting go.sum with "go get"
cd "$(mktemp -d)"
go mod init unit_tests
go install golang.org/x/tools/cmd/goimports@latest
- name: Run go vet
run: |
go vet ./...
- name: Run unit tests
run: |
go test -v ./...
- name: Check for formatting
run:
./script/format