mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-14 06:06:38 +01:00
Feat/lifecycle hooks (#351)
* feat(update): add lifecycle hooks to the update action * fix(ci): add bash tests for lifecycle-hooks to the ci workflow * fix(ci): move integration tests to an isolated step * fix(ci): fix malformed all-contributors json * fix(ci): disable automatic bash test until we figure out a reasonable way to run it in circleci
This commit is contained in:
parent
874180a518
commit
bfae38dbf8
12 changed files with 499 additions and 73 deletions
|
|
@ -36,9 +36,18 @@ workflows:
|
|||
only: /.*/
|
||||
tags:
|
||||
only: /.*/
|
||||
# - integration_testing:
|
||||
# requires:
|
||||
# - checkout
|
||||
# filters:
|
||||
# branches:
|
||||
# only: /.*/
|
||||
# tags:
|
||||
# only: /.*/
|
||||
- build:
|
||||
requires:
|
||||
- testing
|
||||
# - integration_testing
|
||||
- linting
|
||||
filters:
|
||||
branches:
|
||||
|
|
@ -90,6 +99,14 @@ jobs:
|
|||
- run: go get -u github.com/haya14busa/goverage
|
||||
- run: goverage -v -coverprofile=coverage.out ./...
|
||||
- run: godacov -t $CODACY_TOKEN -r ./coverage.out -c $CIRCLE_SHA1
|
||||
#integration_testing:
|
||||
# executor: go
|
||||
# steps:
|
||||
# - attach_workspace:
|
||||
# at: .
|
||||
# - run: go build .
|
||||
# - setup_remote_docker
|
||||
# - run: ./scripts/lifecycle-tests.sh
|
||||
build:
|
||||
executor: go
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue