first attempt at a dotnet docker build
This commit is contained in:
parent
885aa1791c
commit
c63f370df2
@ -0,0 +1,24 @@
|
|||||||
|
name: msbuild
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
env:
|
||||||
|
BUILD_TYPE: Release
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: dotnet7
|
||||||
|
steps:
|
||||||
|
- name: Prep for local builds
|
||||||
|
run: echo "${LOCIP} gitea.comnenos" >> /etc/hosts
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Start Web
|
||||||
|
shell: bash
|
||||||
|
working-directory: ${{runner.workspace}}/MyWebApp
|
||||||
|
run: nohub dotnet run &
|
||||||
|
|
||||||
|
- name: Run Playwright Tests
|
||||||
|
shell: bash
|
||||||
|
working-directory: ${{runner.workspace}}/PlaywriteTests
|
||||||
|
run: dotnet test
|
Loading…
Reference in New Issue
Block a user