Добавить .forgejo/workflows/build.yml
Some checks are pending
Build dotnet project / Dotnet ${{ matrix.dotnet }} matrix test (8.x) (push) Waiting to run

This commit is contained in:
Ivan Shvedov 2024-05-22 17:38:22 +03:00
parent 8e82f16a8a
commit 287c1402e7

View file

@ -0,0 +1,18 @@
name: Build dotnet project
run-name: ${{ github.actor }} is building!
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: [ '8.x' ]
name: Dotnet ${{ matrix.dotnet }} matrix test
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Execute dotnet
run: dotnet build