Fixed CI pipelenie + codecov token
This commit is contained in:
parent
d20883c2fd
commit
a40b65ea00
2 changed files with 6 additions and 1 deletions
4
.github/workflows/buildReporting.yml
vendored
4
.github/workflows/buildReporting.yml
vendored
|
@ -53,6 +53,8 @@ jobs:
|
|||
-
|
||||
name: Reporting
|
||||
uses: codecov/codecov-action@v4
|
||||
env:
|
||||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
||||
with:
|
||||
flags: unittests
|
||||
name: SEB Server Build
|
||||
|
@ -92,7 +94,7 @@ jobs:
|
|||
uses: docker/setup-qemu-action@v3
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
uses: docker/setup-buildx-action@v4
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
|
|
|
@ -12,6 +12,9 @@ import ch.ethz.seb.sebserver.gbl.model.sebconfig.ConfigurationNode;
|
|||
|
||||
public final class API {
|
||||
|
||||
public static final String ERROR_PATH = "/sebserver/error";
|
||||
public static final String CHECK_PATH = "/sebserver/check";
|
||||
|
||||
public enum BulkActionType {
|
||||
HARD_DELETE,
|
||||
DEACTIVATE,
|
||||
|
|
Loading…
Reference in a new issue