Merge branch 'develop' of https://github.com/NicolasConstant/BirdsiteLive into develop
This commit is contained in:
commit
4cb185569b
1 changed files with 4 additions and 6 deletions
10
.github/workflows/dotnet-core.yml
vendored
10
.github/workflows/dotnet-core.yml
vendored
|
@ -1,10 +1,6 @@
|
|||
name: .NET Core
|
||||
name: ASP.NET Core Build & Tests
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -15,6 +11,8 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Launch Db for testing
|
||||
run: docker run --name postgres -e POSTGRES_DB=mytestdb -e POSTGRES_PASSWORD=mysecretpassword -d -p 5432:5432 postgres
|
||||
- name: Setup .NET Core
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
|
|
Reference in a new issue