Skip to content

Merge pull request #19 from BrianAllred/dependabot/github_actions/act… #62

Merge pull request #19 from BrianAllred/dependabot/github_actions/act…

Merge pull request #19 from BrianAllred/dependabot/github_actions/act… #62

Workflow file for this run

name: Build and test
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core SDK 6.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build dotnet release
run: dotnet publish -c Release