Skip to content

Merge pull request #238 from JustAman62/revert-remove-team-radio #567

Merge pull request #238 from JustAman62/revert-remove-team-radio

Merge pull request #238 from JustAman62/revert-remove-team-radio #567

Workflow file for this run

name: CI
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: |
dotnet restore
dotnet tool restore
- name: Build
run: dotnet build --no-restore -c Debug
- name: Lint
run: dotnet tool run csharpier check .
- name: Test
run: dotnet test --no-build --verbosity normal -c Debug