Skip to content

Commit

Permalink
Added workflow -> build.fsx
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanMarr committed Dec 17, 2023
1 parent 5a8be5b commit 2f2f97b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: windows-2022

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Run CI
run: dotnet fsi src/build.fsx

0 comments on commit 2f2f97b

Please sign in to comment.