Skip to content

Bump github.com/cloudinary/cloudinary-go/v2 from 2.8.0 to 2.9.0 (#47) #116

Bump github.com/cloudinary/cloudinary-go/v2 from 2.8.0 to 2.9.0 (#47)

Bump github.com/cloudinary/cloudinary-go/v2 from 2.8.0 to 2.9.0 (#47) #116

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
env:
CLOUDINARY_ACCESS_KEY_ID: ${{ secrets.CLOUDINARY_ACCESS_KEY_ID }}
CLOUDINARY_ACCESS_KEY_SECRET: ${{ secrets.CLOUDINARY_ACCESS_KEY_SECRET }}
CLOUDINARY_CLOUD: ${{ secrets.CLOUDINARY_CLOUD }}
jobs:
test:
strategy:
matrix:
go: [ '1.21' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Install dependencies 📦
run: go mod tidy
- name: Run tests
run: go test ./...