Skip to content

Merge pull request #115 from SierraSoftworks/dependabot/github_action… #243

Merge pull request #115 from SierraSoftworks/dependabot/github_action…

Merge pull request #115 from SierraSoftworks/dependabot/github_action… #243

Workflow file for this run

name: .NET Core
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 7.0
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal