We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f58b17d commit 176887dCopy full SHA for 176887d
.github/workflows/docker-ci.yml renamed to .github/workflows/ci.yaml
@@ -1,4 +1,4 @@
1
-name: docker build
+name: CI
2
3
on:
4
push:
@@ -10,7 +10,18 @@ env:
10
IMAGE_NAME: spyduck/cluster-api-provider-proxmox
11
12
jobs:
13
+ # add public code coverage reports
14
+ coverage:
15
+ name: unit test coverage
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@master
19
+ - run: "make unit-test-cover"
20
+ - uses: codecov/codecov-action@v2
21
+
22
+ # build and push to docker.io
23
build:
24
+ name: docker build & push
25
runs-on: ubuntu-latest
26
steps:
27
- name: Checkout repository
.github/workflows/cover.yaml
0 commit comments