Skip to content

Commit f727fa9

Browse files
committed
target netcoreapp3.1 and net5.0 for test, clean up github workflows
1 parent 5907dc8 commit f727fa9

4 files changed

Lines changed: 3 additions & 20 deletions

File tree

.github/workflows/publish.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
name: Build and Publish Docs
2-
32
on:
43
push:
54
branches: [ master ]
6-
75
jobs:
86
build:
9-
107
runs-on: ubuntu-latest
11-
128
steps:
139
- uses: actions/checkout@v2
1410
- name: Setup .NET
@@ -17,15 +13,8 @@ jobs:
1713
dotnet-version: 5.0.202
1814
- name: Install tools
1915
run: dotnet tool restore
20-
21-
2216
- name: Build and Test and Docs using FAKE
2317
run: dotnet fake build
24-
25-
26-
27-
28-
2918
- name: Deploy
3019
uses: peaceiris/actions-gh-pages@v3
3120
with:

.github/workflows/pull-request.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ name: Build and Test Pull Request
33
on:
44
pull_request:
55
branches: [ master ]
6-
6+
77
jobs:
88
build:
9-
109
runs-on: ubuntu-latest
11-
1210
steps:
1311
- uses: actions/checkout@v2
1412
- name: Setup .NET
@@ -19,7 +17,3 @@ jobs:
1917
run: dotnet tool restore
2018
- name: Build Test and Docs using FAKE
2119
run: dotnet fake build
22-
23-
24-
25-

tests/FSharp.Control.AsyncSeq.Tests/FSharp.Control.AsyncSeq.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net5.0</TargetFrameworks>
3+
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66
<ItemGroup>

tests/fable/FSharp.Control.AsyncSeq.Tests/FSharp.Control.AsyncSeq.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFramework>netstandard2.1</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77
<ItemGroup>

0 commit comments

Comments
 (0)