Skip to content

fix: ensure release runs full test+coverage gate before packaging, us… #1

fix: ensure release runs full test+coverage gate before packaging, us…

fix: ensure release runs full test+coverage gate before packaging, us… #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: ${{ runner.os }}-nuget-
- name: Restore tools
run: dotnet tool restore
- name: Test + Coverage + Mutation
run: |
chmod +x build.sh
./build.sh Test