Skip to content

Commit

Permalink
(ci) Run tests on all supported platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
perlun committed Jan 22, 2022
1 parent f8d2da2 commit 0713265
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 38 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/dotnetcore.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: .NET run tests

on: [push]

jobs:
test:
runs-on: ${{ matrix.runner }}

strategy:
matrix:
runner:
- windows-2022
- ubuntu-20.04
- macos-11

steps:
- uses: actions/checkout@v1

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x

- name: Re-generate auto-generated files
run: make auto-generated

- name: Run test suite
run: dotnet test --configuration Release --verbosity normal

0 comments on commit 0713265

Please sign in to comment.