Skip to content

fix(deps): update module github.com/gophercloud/gophercloud/v2 to v2.13.0 #51

fix(deps): update module github.com/gophercloud/gophercloud/v2 to v2.13.0

fix(deps): update module github.com/gophercloud/gophercloud/v2 to v2.13.0 #51

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build
run: go build ./...
- name: Test
run: go test ./...
- name: Vet
run: go vet ./...
- name: Check formatting
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "The following files are not formatted correctly:"
gofmt -l .
exit 1
fi