Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
53 lines (45 loc) · 1.4 KB

File metadata and controls

53 lines (45 loc) · 1.4 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: .NET
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
6.0.x
7.0.x
8.0.x
- name: Restore
run: dotnet restore IT.Collections.Equatable.sln
- name: Build
run: dotnet build IT.Collections.Equatable.sln --configuration Release --no-restore
- name: Test
run: dotnet test IT.Collections.Equatable.Tests/IT.Collections.Equatable.Tests.csproj --configuration Release --no-restore
publish:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Publish IT.Collections.Equatable
uses: pairbit/publish-nuget@v2.6.1
with:
PROJECT_FILE_PATH: IT.Collections.Equatable/IT.Collections.Equatable.csproj
NUGET_KEY: ${{secrets.NUGET}}
TAG_COMMIT: true
- name: Publish IT.Collections.Equatable.Factory
uses: pairbit/publish-nuget@v2.6.1
with:
PROJECT_FILE_PATH: IT.Collections.Equatable.Factory/IT.Collections.Equatable.Factory.csproj
NUGET_KEY: ${{secrets.NUGET}}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.