Skip to content

pipeline

pipeline #44

Workflow file for this run

name: Build F# Nerddeck
on:
push:
paths:
- fsharp/**
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ github.workspace }}/fsharp/NerdDeckFSharp
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Build F#
run: dotnet build
test:
runs-on: ubuntu-latest
needs: build
defaults:
run:
working-directory: ${{ github.workspace }}/fsharp/NerdDeckFSharp
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Test F#
run: dotnet test