WIP on GitHub Action YAML

This commit is contained in:
Daniel J. Summers 2024-03-23 17:46:29 -04:00 committed by GitHub
parent 7b325dc19e
commit 8f967b3f71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

48
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,48 @@
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build_and_test:
name: Build / Test
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ "6.0", "7.0", "8.0" ]
services:
postgres:
image: postgres:latest
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
rethink:
image: rethinkdb:latest
ports:
- 28015:28015
- 29015:29015
steps:
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.x
- name: Restore dependencies
run: dotnet restore src/MyWebLog.sln
- name: Build (${{ matrix.dotnet-version }})
run: dotnet build src/MyWebLog.sln --no-restore -f net${{ matrix.dotnet-version }}
- name: Test (${{ matrix.dotnet-version }})
run: dotnet run --project src/MyWebLog.Tests/MyWebLog.Tests.fsproj -f net${{ matrix.dotnet-version }}