Files
Giants/.gitea/workflows/Main.yaml
Renovate Bot 2394c325a3
All checks were successful
check main state / build (9.0.x) (push) Successful in 2m39s
Update actions/setup-dotnet action to v5
2026-02-05 21:01:28 +00:00

27 lines
568 B
YAML

name: check main state
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '9.0.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
- name: Install dependencies
run: dotnet restore ./Giants.sln
- name: Build
run: dotnet build ./Giants.sln
- name: Check format
run: dotnet format
- name: Test with the dotnet CLI
run: dotnet test ./Giants.sln