Skip to content

chore(deps): bump actions/checkout from 4 to 5 in the actions group #2

chore(deps): bump actions/checkout from 4 to 5 in the actions group

chore(deps): bump actions/checkout from 4 to 5 in the actions group #2

Workflow file for this run

name: Build & Tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Environment
uses: ./.github/actions/setup-env
- name: Build
run: dotnet build --configuration Debug --no-incremental
- name: Test
run: dotnet test --no-build