diff options
author | crupest <crupest@outlook.com> | 2020-07-26 15:02:55 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-07-26 15:02:55 +0800 |
commit | f5d10683a1edeba4dabe148ff7aa682c044f7496 (patch) | |
tree | d8f7edae96baa26823dee80ccc9329a23ac04c3c /.github/workflows/ci.yaml | |
parent | 7753c9cad23b06c2acdd908a5a7cc3863bfa6b61 (diff) | |
download | timeline-f5d10683a1edeba4dabe148ff7aa682c044f7496.tar.gz timeline-f5d10683a1edeba4dabe148ff7aa682c044f7496.tar.bz2 timeline-f5d10683a1edeba4dabe148ff7aa682c044f7496.zip |
Merge front end repo
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r-- | .github/workflows/ci.yaml | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index b59f94fb..00000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,41 +0,0 @@ -name: CI
-
-on:
- push:
- branches: [master]
- pull_request:
- branches: [master]
-
-jobs:
- build:
- name: Build And Test
- runs-on: ubuntu-latest
- env:
- ASPNETCORE_ENVIRONMENT: "Development"
- NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
-
- steps:
- - uses: actions/checkout@v2
-
- - name: Restore Cache
- uses: actions/cache@v2
- with:
- path: ${{ env.NUGET_PACKAGES }}
- key: nuget-${{ runner.os }}-${{ hashFiles('**/packages.lock.json') }}
- restore-keys: |
- nuget-${{ runner.os }}-
-
- - name: Use .Net Core 3.1.x
- uses: actions/setup-dotnet@v1
- with:
- dotnet-version: "3.1.x"
-
- - name: Build And Test
- run: dotnet test --logger html --collect:"XPlat Code Coverage" --settings './Timeline.Tests/coverletArgs.runsettings'
-
- - name: Upload Test Artifact
- uses: actions/upload-artifact@v2
- if: ${{ success() || failure() }}
- with:
- name: test-result
- path: Timeline.Tests/TestResults/
|