Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1e6bb88
Finish 0.1.1
Koval1997 Oct 10, 2022
ebbf904
chore: clear solution
Koval1997 Oct 10, 2022
a99c278
chore(Assets): #67: move logo from solution to project
Jun 6, 2025
e7bcac4
chore(Assets): #67: add links to logo in csproj files
Jun 6, 2025
01c595c
chore: add .idea folder to gitignore
Jun 6, 2025
28fe434
chore(Assets): #67: update logo file to 128×128 resolution
Jun 9, 2025
04e0a20
Revert "chore: clear solution"
Jun 17, 2025
4a88057
chore(Assets): #67: add JWT text to icon
Jymapas Jul 9, 2025
c65bba3
chore: bump minor versions of packages
Jul 10, 2025
025c06b
Update JwtAuthentication.Core/JwtAuthentication.Core.csproj
fpandyz Jul 10, 2025
e34af67
chore: update Authors metainfo
Jul 10, 2025
bef30d8
Merge branch 'TourmalineCore:master' into feature/#67-update-icon-sto…
Jymapas Jul 10, 2025
8b21a35
Merge branch 'TourmalineCore:master' into feature/#67-update-icon-sto…
Jymapas Jul 10, 2025
0d28161
feat: add running script to ci to run tests for all .NET versions
Jul 10, 2025
37f7c60
ci(tests_workflow): #72: add installing libssl
Jul 10, 2025
1cd8d5e
ci(tests_workflow): #72: change ubuntu version to 20.04
Jul 10, 2025
3f3c8ea
ci(tests_workflow): #72: manually install libssl1.1
Jul 10, 2025
b431288
ci(tests_workflow): #72: run tests only on .NET 9
Jul 10, 2025
0cc6a0b
ci(tests_workflow): #72: add dotnet-version for 3.1 and 5-9
Jul 10, 2025
13bf2dc
ci(tests_workflow): #72: add run test on push to feature/*
Jul 11, 2025
26e8a40
ci(tests_workflow): #72: add run test on dotnetframework 3.0.x
Jul 11, 2025
2ea3dc9
chore(Tests): #72: add always failure test
Jul 11, 2025
124d126
Revert "chore(Tests): #72: add always failure test"
Jul 11, 2025
4dfcb08
ci(tests_workflow): #72: add quotes to feature/* branches rule to awo…
Jul 11, 2025
a15153f
ci(tests_workflow): #72: remove run tests on push to master and develop
Jul 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 24 additions & 11 deletions .github/workflows/tests_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,29 @@ name: .NET

on:
push:

branches:
- "feature/*"
pull_request:
branches:
- develop
- master

jobs:
tests:
name: Run tests
runs-on: 'ubuntu-latest'
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0'
- run: |
dotnet restore ./Examples/Tests/Tests.csproj
dotnet test ./Examples/Tests/Tests.csproj --verbosity normal
- uses: actions/checkout@v4
- name: Setup .NET Core SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.0.x
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
9.0.x
- run: dotnet --list-sdks
- run: dotnet restore ./Examples/Tests/Tests.csproj
- run: dotnet test ./Examples/Tests/Tests.csproj --verbosity normal
Loading