Adds deprecation notice to README.md #163
Workflow file for this run
This file contains hidden or 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: .NET Library | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main, release ] | |
| jobs: | |
| build: | |
| name: Build and test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ windows-latest ] # Add other OSes later | |
| dotnet: ['3.1.x'] | |
| steps: | |
| - name: Git Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: ${{ matrix.dotnet }} | |
| - name: Install dependencies | |
| run: dotnet restore | |
| - name: Install Codecov tool | |
| run: dotnet tool install --global Codecov.Tool --version 1.13.0 | |
| - name: Build | |
| run: dotnet build --configuration Release --no-restore | |
| - name: Unit test & generate coverage report | |
| run: dotnet test Amazon.IonObjectMapper.Test /p:CollectCoverage=true /p:CoverletOutputFormat=opencover | |
| - name: Upload to Codecov | |
| uses: codecov/codecov-action@v1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: unittests | |
| - name: Performance test | |
| if: github.base_ref == 'release' | |
| run: dotnet test Amazon.IonObjectMapper.PerformanceTest |