Skip to content

update to the latest unity 2021, update some packages #196

update to the latest unity 2021, update some packages

update to the latest unity 2021, update some packages #196

Workflow file for this run

name: Build & Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: |
dotnet test projects/TinkState-Test --no-restore --collect:"XPlat Code Coverage" --results-directory ./coverage
cp coverage/**/coverage.cobertura.xml coverage.cobertura.xml
- name: Coverage Summary Report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: coverage.cobertura.xml
- name: Upload coverage to codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage.cobertura.xml
token: ${{ secrets.CODECOV_TOKEN }}