File tree Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Expand file tree Collapse file tree 3 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 1
1
name : Build
2
2
on :
3
- push : {}
4
- pull_request : {}
5
- schedule :
6
- - cron : 0 15 * * *
3
+ push :
4
+ pull_request :
7
5
8
6
env :
9
7
DOTNET_CLI_TELEMETRY_OPTOUT : " 1"
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " *"
7
+
8
+ jobs :
9
+ release :
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - uses : actions/checkout@v3
14
+ - name : Setup .Net
15
+ uses : actions/setup-dotnet@v3
16
+ with :
17
+ global-json-file : " ./global.json"
18
+ - run : ./fake build --target Push
19
+ env :
20
+ NUGET_TOKEN : ${{secrets.NUGET_RELEASE_KEY}}
Original file line number Diff line number Diff line change
1
+ #### 10.0.0 - 2023-04-20
2
+ * Make Expect.isNotEmpty accept whitespace strings #452
3
+ * Removed deprecated code #449
4
+ * Bumped minimum framework to .NET 6 #447
5
+ * Add testFixtureAsync and testFixtureTask #444
6
+
1
7
#### 9.0.3 - 2021-08-17
2
8
* Thanks @lydell for improving Expecto.Diff
3
9
You can’t perform that action at this time.
0 commit comments