Skip to content

Commit 78bcca2

Browse files
committed
divided test-action into dotnet and fable actions
1 parent a2c4c0a commit 78bcca2

3 files changed

Lines changed: 23 additions & 18 deletions

File tree

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,6 @@
1-
name: Test
1+
name: DotNet
22
on: [push, pull_request]
33
jobs:
4-
fable:
5-
name: Fable
6-
runs-on: ubuntu-latest
7-
steps:
8-
- name: Checkout
9-
uses: actions/checkout@v2
10-
- name: Install Dotnet
11-
uses: actions/setup-dotnet@v1
12-
with:
13-
dotnet-version: '6.0.100'
14-
- name: Restore Tools
15-
run: dotnet tool restore
16-
- name: Paket Restore
17-
run: dotnet paket restore
18-
- name: Build
19-
run: dotnet fable src/Demo/Fable --outDir bin/Fable
204
dotnet:
215
name: DotNet
226
runs-on: ubuntu-latest

.github/workflows/fable.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Fable
2+
on: [push, pull_request]
3+
jobs:
4+
fable:
5+
name: Fable
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@v2
10+
- name: Install Dotnet
11+
uses: actions/setup-dotnet@v1
12+
with:
13+
dotnet-version: '6.0.100'
14+
- name: Restore Tools
15+
run: dotnet tool restore
16+
- name: Paket Restore
17+
run: dotnet paket restore
18+
- name: Build
19+
run: dotnet fable src/Demo/Fable --outDir bin/Fable

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11

2-
[![Test](https://github.com/fsprojects/FSharp.Data.Adaptive/actions/workflows/test.yml/badge.svg)](https://github.com/fsprojects/FSharp.Data.Adaptive/actions/workflows/test.yml)
2+
[![DotNet](https://github.com/fsprojects/FSharp.Data.Adaptive/actions/workflows/dotnet.yml/badge.svg)](https://github.com/fsprojects/FSharp.Data.Adaptive/actions/workflows/dotnet.yml)
3+
[![Fable](https://github.com/fsprojects/FSharp.Data.Adaptive/actions/workflows/fable.yml/badge.svg)](https://github.com/fsprojects/FSharp.Data.Adaptive/actions/workflows/fable.yml)
4+
35
# FSharp.Data.Adaptive
46

57
FSharp.Data.Adaptive provides a clean API for handling changeable ("adaptive") data while sticking to *functional* principles. It allows programmers to treat adaptive values just like immutable data while still maintaining efficient updates. Many adaptive data structures and operators are provided.

0 commit comments

Comments
 (0)