Skip to content

Setup CI to run tests #1

Setup CI to run tests

Setup CI to run tests #1

Workflow file for this run

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