Skip to content

Commit 2dca93d

Browse files
committed
github: add build for macos
1 parent 98d72dd commit 2dca93d

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Linux
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- '*'
9+
pull_request:
10+
branches:
11+
- master
12+
13+
jobs:
14+
build:
15+
runs-on: macos-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
19+
- name: Setup dotnet
20+
uses: actions/setup-dotnet@v2
21+
with:
22+
dotnet-version: '6.0.x'
23+
24+
- name: Display .NET info
25+
run: dotnet --info
26+
27+
- run: |
28+
cd Src
29+
dotnet build
30+
dotnet test

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
[![Gitter](https://img.shields.io/gitter/room/nwjs/nw.js.svg)](https://gitter.im/MASD-Project/Lobby)
55
[![Continuous Linux](https://github.com/MASD-Project/csharp_ref_impl/actions/workflows/continuous-linux.yml/badge.svg)](https://github.com/MASD-Project/csharp_ref_impl/actions/workflows/continuous-linux.yml)
66
[![Continuous Windows](https://github.com/MASD-Project/csharp_ref_impl/actions/workflows/continuous-windows.yml/badge.svg)](https://github.com/MASD-Project/csharp_ref_impl/actions/workflows/continuous-windows.yml)
7+
[![Continuous MacOS](https://github.com/MASD-Project/csharp_ref_impl/actions/workflows/continuous-windows.yml/badge.svg)](https://github.com/MASD-Project/csharp_ref_impl/actions/workflows/continuous-macos.yml)
78

89
# MASD C# Reference Implementation
910

0 commit comments

Comments
 (0)