This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
PhysFormuler/.github/workflows/dotnetcore.yml
2019-11-14 20:48:33 +03:00

18 lines
302 B
YAML

name: .NET Core
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.2.108
- name: Build with dotnet
run: dotnet build --configuration Release