Добавить .forgejo/workflows/build.yml
Some checks are pending
Build dotnet project / Dotnet ${{ matrix.dotnet }} matrix test (8.x) (push) Waiting to run
Some checks are pending
Build dotnet project / Dotnet ${{ matrix.dotnet }} matrix test (8.x) (push) Waiting to run
This commit is contained in:
parent
8e82f16a8a
commit
287c1402e7
18
.forgejo/workflows/build.yml
Normal file
18
.forgejo/workflows/build.yml
Normal 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
|
Loading…
Reference in a new issue