mirror of
https://github.com/yaakov-h/Shamir.git
synced 2025-01-18 08:46:33 +00:00
Add initial CI
This commit is contained in:
parent
ec19c1d01a
commit
d6eeabd796
1 changed files with 30 additions and 0 deletions
30
.github/workflows/ci.yaml
vendored
Normal file
30
.github/workflows/ci.yaml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: Build/Test
|
||||
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: .NET on ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
- windows-latest
|
||||
configuration:
|
||||
- debug
|
||||
- release
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.4
|
||||
|
||||
- name: Setup .NET
|
||||
uses: actions/setup-dotnet@v1.8.2
|
||||
|
||||
- name: Build Solution
|
||||
run: dotnet build -c ${{ matrix.configuration }} src/shamir.sln
|
Loading…
Reference in a new issue