Files
Lab7/.gitea/workflows/ci.yml
Kowal 7b94dbfb06
Some checks failed
First CI / build (push) Failing after 36s
Opis zmian zad4.1
2025-11-20 15:16:50 +01:00

13 lines
275 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
- run: dotnet te