Technology refresh: update dependencies and target frameworks #31
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: Continuous Integration | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| - master | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| - feature/* | |
| tags: | |
| - v[0-9]+.[0-9]+.[0-9]+ | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| dotnet-format: | |
| uses: ./.github/workflows/dotnet-format.yml | |
| pre-commit: | |
| uses: ./.github/workflows/pre-commit.yml | |
| build: | |
| uses: ./.github/workflows/build.yml | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| publish: | |
| uses: ./.github/workflows/publish.yml | |
| needs: | |
| - build | |
| - dotnet-format | |
| - pre-commit | |
| if: ${{ github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/tags/v') }} | |
| secrets: | |
| NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |