Skip to content

Moving to use github actions #1

Moving to use github actions

Moving to use github actions #1

Workflow file for this run

name: Build And Test
on: [push]
env:
BUILD_VERSION: 8.0.${{github.run_number}}
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v2
with:
dotnet-version: 9.0.x
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build