Skip to content

Commit

Permalink
Setup CI to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinbarabash committed Oct 31, 2023
1 parent e01ed02 commit 2a5cd76
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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 F#
run: dotnet tool install -g fsharp
- name: Install tools
run: dotnet tool restore
- name: Build
run: dotnet build
- name: Test
run: dotnet test --project src/Escalier.Parser.Test

0 comments on commit 2a5cd76

Please sign in to comment.