diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/deploy.yml | 2 | ||||
-rw-r--r-- | .github/workflows/test.yml | 12 |
2 files changed, 12 insertions, 2 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 38f302f..006e3e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,7 +5,7 @@ on: - published env: REGISTRY: ghcr.io - IMAGE_NAME: caronte + IMAGE_NAME: eciavatta/caronte jobs: build_push_docker: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95b44fc..0b5d5be 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,15 @@ name: Test -on: [push, pull_request] +on: + push: + branches: + - main + - develop + - feature/* + - release/* + - hotfix/* + tags-ignore: + - 1.* + pull_request: jobs: test_backend: name: Build and test backend |