Sam Therapy
e2ec4a5857
Some checks failed
continuous-integration/drone Build is failing
also prepare pipelines and stuff Signed-off-by: Sam Therapy <sam@samtherapy.net>
28 lines
853 B
YAML
28 lines
853 B
YAML
name: ASP.NET Core Build & Tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
working-directory: ./src
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Launch Db for testing
|
|
run: docker run --name postgres -e POSTGRES_USER=birdtest -e POSTGRES_DB=birdsitetest -e POSTGRES_PASSWORD=mysecretpassword -d -p 5432:5432 postgres
|
|
- name: Setup .NET Core
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 3.1.101
|
|
- name: Install dependencies
|
|
run: dotnet restore
|
|
working-directory: ${{env.working-directory}}
|
|
- name: Build
|
|
run: dotnet build --configuration Release --no-restore
|
|
working-directory: ${{env.working-directory}}
|
|
- name: Test
|
|
run: dotnet test --no-restore --verbosity minimal
|
|
working-directory: ${{env.working-directory}}
|