mirror of
https://github.com/yummy4friends/y4f.git
synced 2025-01-02 20:17:09 +01:00
59ff664ffe
This tests if the program still runs and does not fail to build
24 lines
415 B
YAML
24 lines
415 B
YAML
name: Test if program still runs
|
|
|
|
on:
|
|
push:
|
|
branches: [ "dev" ]
|
|
pull_request:
|
|
branches: [ "dev" ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: 7.0.107
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
- name: Build
|
|
run: dotnet build --no-restore
|