chore: update dependencies #110
Workflow file for this run
This file contains 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: Build, validate formatting and run tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
format-and-build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout GitHub Action' | |
uses: actions/checkout@main | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '9.x' | |
- name: Restore dotnet tools | |
run: dotnet tool restore | |
- name: Validate formatting | |
run: dotnet csharpier --check . | |
- name: Build BlazorReports | |
run: dotnet build | |
- name: Run tests | |
run: dotnet test |