Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wieslawsoltes committed Jan 11, 2025
1 parent b51820a commit c46cec9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
- release/*

jobs:

build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
name: Build ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
- name: Build
run: dotnet build -c Release

0 comments on commit c46cec9

Please sign in to comment.