Skip to content

update copyright

update copyright #78

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
dotnet: [8.0.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore
run: dotnet tool restore
- name: Build
run: dotnet fsi build.fsx
- name: Format(Chack)
run: dotnet fsi build.fsx -t format.check
- name: Test
run: dotnet fsi build.fsx -t test