Skip to content

Commit

Permalink
Merge pull request #194 from SCCapstone/testsWorkflow
Browse files Browse the repository at this point in the history
Tests workflow
  • Loading branch information
jbytes1027 authored Jan 19, 2024
2 parents b1ce48e + f505a5d commit c98601e
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Builds and runs tests

name: Run tests

on: push

jobs:
test:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
include-prerelease: true

- name: Run tests with dotnet
run: |
cd FU.API
dotnet test
shell: pwsh

0 comments on commit c98601e

Please sign in to comment.