Skip to content

Commit

Permalink
testWorkflow: add jobs section
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-scales committed Jan 18, 2024
1 parent 37e87b9 commit c78d5d8
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions .github/workflows/tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,29 @@ name: Run tests

on: push

test:
runs-on: windows-latest
jobs:
test:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
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: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '7.0.x'
include-prerelease: true

- name: Build with dotnet
run: |
pwd
cd FU.API
dotnet build
shell: pwsh
- name: Build with dotnet
run: |
pwd
cd FU.API
dotnet build
shell: pwsh

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

0 comments on commit c78d5d8

Please sign in to comment.