Skip to content

Update README.md with "maintained by community" badge #771

Update README.md with "maintained by community" badge

Update README.md with "maintained by community" badge #771

name: Build and test
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
build-and-test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x.x
- name: make script executable
run: chmod u+x build.sh
- name: Build and test
working-directory: ./
run: ./build.sh runtestsallnonetfx
build-and-test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x.x
- name: Build and test (includes netfx)
working-directory: ./
run: ./build.cmd runtestsall