Files
lab7_ci_anton_ovod/.gitea/workflows/ci.yml
Anton Ovod 1f37b538a0
All checks were successful
First CI / build (push) Successful in 1m1s
Add dotnet console app. Remove c file.
2025-11-20 12:46:02 +01:00

14 lines
302 B
YAML

name: First CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0.x"
- run: dotnet restore
- run: dotnet build