Skip to content

Commit

Permalink
Setup CI to run tests (#3)
Browse files Browse the repository at this point in the history
* Setup CI to run tests

* remove 'install F#' step

* fix 'test' step
  • Loading branch information
kevinbarabash authored Oct 31, 2023
1 parent e01ed02 commit 7d19ab0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on: [pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 7.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: "7.x"
- name: Install tools
run: dotnet tool restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test

0 comments on commit 7d19ab0

Please sign in to comment.