Skip to content

chore(deps): bump actions/checkout from 5.0.0 to 6.0.2 #35

chore(deps): bump actions/checkout from 5.0.0 to 6.0.2

chore(deps): bump actions/checkout from 5.0.0 to 6.0.2 #35

Workflow file for this run

name: build
on:
push:
branches: [ main, master, dev ]
pull_request:
branches: [ main, master, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
with:
lfs: true
fetch-depth: 0
- name: Install .NET SDK
uses: actions/setup-dotnet@v4.3.1
with:
global-json-file: './global.json'
- name: Restore .NET tools
run: dotnet tool restore
- name: dotnet build
run: dotnet build -c Release
- name: dotnet test
run: dotnet test -c Release