Skip to content

Use the full container uri when path is not set #44

Use the full container uri when path is not set

Use the full container uri when path is not set #44

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET test
on:
push:
branches: [ "main" ]
paths-ignore:
- 'doc/**'
- '*.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- 'doc/**'
- '*.md'
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: ./build.sh
shell: bash
build-win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build
run: ./build.ps1
shell: pwsh