File tree Expand file tree Collapse file tree 4 files changed +36
-0
lines changed
Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ * @ WyriHaximus
Original file line number Diff line number Diff line change 1+ github : WyriHaximus
Original file line number Diff line number Diff line change 1+ name : Continuous Integration
2+ env :
3+ DOCKER_IMAGE : wyrihaximusnet/kubernetes-redis-db-asignment-operator
4+ DOCKER_BUILDKIT : 1
5+ on :
6+ push :
7+ branches :
8+ - master
9+ pull_request :
10+ jobs :
11+ lint :
12+ runs-on : ubuntu-latest
13+ strategy :
14+ fail-fast : false
15+ steps :
16+ - uses : actions/checkout@v2
17+ - name : Lint Dockerfile
18+ uses : docker://hadolint/hadolint:latest-debian
19+ with :
20+ entrypoint : hadolint
21+ args : Dockerfile
22+ build :
23+ needs :
24+ - lint
25+ runs-on : ubuntu-latest
26+ strategy :
27+ fail-fast : false
28+ steps :
29+ - uses : actions/checkout@v2
30+ - run : docker build . -t "${DOCKER_IMAGE}:ci-latest"
31+ - run : docker images
Original file line number Diff line number Diff line change 1+ ignored :
2+ - DL3018 # Pin versions in apk add - See: https://github.com/hadolint/hadolint/wiki/DL3018
3+ - DL3020 # We're copying the scripts for this operator to work
You can’t perform that action at this time.
0 commit comments