From 57572c0f00eaf0f8455c603541a148f36d74d88b Mon Sep 17 00:00:00 2001 From: liuhaoyang Date: Thu, 6 Jan 2022 15:19:47 +0800 Subject: [PATCH] ADD CI-IT.yml --- .github/workflows/ci-it.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci-it.yml diff --git a/.github/workflows/ci-it.yml b/.github/workflows/ci-it.yml new file mode 100644 index 00000000..b229e345 --- /dev/null +++ b/.github/workflows/ci-it.yml @@ -0,0 +1,26 @@ +name: CI AND IT + +on: + push: + tags: + - v* + branches: + - develop + - master + pull_request: + +jobs: + net6: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 6.0.0 + - name: Restore dependencies + run: dotnet restore + - name: Build + run: dotnet build --no-restore + - name: Test + run: dotnet test --no-build --verbosity normal