Skip to content

script: Remove unused script #31

script: Remove unused script

script: Remove unused script #31

Workflow file for this run

name: Linters
on:
- push
- pull_request
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1'
- name: Run linters
run: |
make lint
# TODO: Use 'go mod tidy -diff' instead once go 1.23 is out
# https://github.com/golang/go/issues/27005
- name: Ensure go.mod is up-to-date
run: |
if [ $(go mod tidy && git diff | wc -l) -gt 0 ]; then git diff && exit 1; fi