fix(email ) :fix email recover #140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dotnet CI | |
on: | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
#- name: Build Docker image | |
# working-directory: this/path | |
#run: docker build -t test/mygoapp:test . | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Install dependencies | |
working-directory: AnalysisData | |
run: dotnet restore ./AnalysisData.sln | |
- name: Build | |
working-directory: AnalysisData | |
run: dotnet build ./AnalysisData.sln | |
- name: Test with the dotnet CLI | |
working-directory: AnalysisData | |
run: dotnet test ./AnalysisData.sln |