Bump CsvHelper and 9 others #446
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: CI | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| jobs: | |
| build-android: | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/build-android.yml | |
| with: | |
| push: false | |
| sign: false | |
| upload: false | |
| mode: debug | |
| secrets: inherit | |
| build-net: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup dotnet | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.0.x' | |
| - name: Install dependencies | |
| run: dotnet restore | |
| working-directory: 'Backend' | |
| - name: Build | |
| run: dotnet build | |
| working-directory: 'Backend' | |
| - name: Test with the dotnet CLI | |
| run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover | |
| working-directory: 'Backend' | |
| - name: Codecov | |
| uses: codecov/[email protected] | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| build-docker: | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/build-docker.yml | |
| with: | |
| push: false | |
| tags: ci | |
| labels: ci |