Skip to content

chore: update dependencies (#113) #62

chore: update dependencies (#113)

chore: update dependencies (#113) #62

name: Build, validate formatting and run tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
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: '8.x'
- name: Restore tools
run: dotnet tool restore
- name: Validate formatting
run: dotnet csharpier --check .
- name: Build Solution
run: dotnet build
- name: Run tests
run: dotnet test