Shamir/.github/workflows/ci.yaml
Workflow config file is invalid. Please check your config file: yaml: line 14: could not find expected ':'
2021-09-25 21:23:57 +10:00

30 lines
507 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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