Skip to content

Commit

Permalink
[WIP] first stab at Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisd8088 committed Aug 12, 2020
1 parent 78d47da commit c4a0da8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Scalar

on:
push:
branches: [ master, initial-linux-trial ]
pull_request:
branches: [ master ]

jobs:
validate_gcm:
name: "CI"

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-16.04, ubuntu-18.04, ubuntu-20.04, windows-2019, macos-10.15]

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # Indicate full history so Nerdbank.GitVersioning works.

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.302

- name: Build
run: Scripts/Linux/BuildScalarForLinux.sh

- name: Test
run: Scripts/Linux/RunUnitTests.sh

0 comments on commit c4a0da8

Please sign in to comment.