Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Bump golang.org/x/crypto from 0.15.0 to 0.17.0 #79

Bump golang.org/x/crypto from 0.15.0 to 0.17.0

Bump golang.org/x/crypto from 0.15.0 to 0.17.0 #79

Workflow file for this run

name: Test
on:
- push
- pull_request
env:
CGO_LDFLAGS_ALLOW: "-s|-w"
jobs:
test:
runs-on: ubuntu-latest
container:
image: darthsim/imgproxy-ci:202311211816
strategy:
matrix:
go-version: ["1.21.4"]
vips-version: ["8.15"]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Cache mods
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Download mods
run: go mod download
- name: Test
run: go test ./...
env:
LD_LIBRARY_PATH: "/usr/local/lib:/root/vips/${{ matrix.vips-version }}/lib"
PKG_CONFIG_PATH: "/usr/local/lib/pkgconfig:/root/vips/${{ matrix.vips-version }}/lib/pkgconfig"