Skip to content

Commit

Permalink
Do not execute tests on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nvborisenko committed Feb 15, 2024
1 parent e5bfbeb commit d57d3bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -25,16 +25,13 @@ jobs:
run: dotnet pack --property:PackageOutputPath=../../pkgs

- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pkgs
path: |
./pkgs/*.nupkg
./pkgs/*.snupkg
- name: Test
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=OpenCover /p:CoverletOutput=./Coverage.xml

- name: Publish Coverage
uses: codecov/codecov-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Pack
run: dotnet pack -c Release --property:PackageOutputPath=../../pkgs
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pkgs
path: |
Expand Down

0 comments on commit d57d3bf

Please sign in to comment.