mirror of
https://github.com/willnorris/imageproxy.git
synced 2024-12-30 22:34:18 -05:00
b27130d75d
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.3.1 to 4.5.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](5ecb98a3c6...e28ff129e5
)
---
updated-dependencies:
- dependency-name: codecov/codecov-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.4 KiB
YAML
51 lines
1.4 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- "**"
|
|
name: tests
|
|
env:
|
|
GO111MODULE: on
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version:
|
|
# support the two most recent major go versions
|
|
- stable
|
|
- oldstable
|
|
platform: [ubuntu-latest]
|
|
include:
|
|
# minimum go version that works. This is not necessarily supported in
|
|
# any way, and will be bumped up without notice as needed. But it at
|
|
# least lets us know what go version should work.
|
|
- go-version: 1.21
|
|
platform: ubuntu-latest
|
|
|
|
# include windows, but only with the latest Go version, since there
|
|
# is very little in the library that is platform specific
|
|
- go-version: stable
|
|
platform: windows-latest
|
|
|
|
# only update test coverage stats with most recent go version on linux
|
|
- go-version: stable
|
|
platform: ubuntu-latest
|
|
update-coverage: true
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Run go test
|
|
run: go test -v -race -coverprofile coverage.txt -covermode atomic ./...
|
|
|
|
- name: Upload coverage to Codecov
|
|
if: ${{ matrix.update-coverage }}
|
|
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
|