17 lines
324 B
YAML
17 lines
324 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: '6.0.x'
|
|
- run: dotnet restore
|
|
- run: dotnet build
|
|
test:
|
|
steps:
|
|
- name: trying to run
|
|
run: dotnet run
|