Skip to content

fix: update gpkgPath formatting in deployment template to use internalPvc.gpkgSubPath #245

fix: update gpkgPath formatting in deployment template to use internalPvc.gpkgSubPath

fix: update gpkgPath formatting in deployment template to use internalPvc.gpkgSubPath #245

Workflow file for this run

name: "Pull Request"
on: [pull_request]
jobs:
tests:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['6.0.x' ]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Run tests
run: dotnet test --no-restore --verbosity normal
build_image:
name: Build Image
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: build service docker image
run: docker build --no-cache -t test-build-service:latest -f MergerService/Dockerfile .
- name: build cli docker image
run: docker build --no-cache -t test-build-cli:latest -f MergerCli/Dockerfile .