Make actions go through built-in tests

mac
Miepee 3 years ago committed by GitHub
parent f3593347bd
commit 807b51f48c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -92,3 +92,20 @@ jobs:
with: with:
name: GUI-${{ matrix.os }} name: GUI-${{ matrix.os }}
path: ${{ matrix.os }}.zip path: ${{ matrix.os }}.zip
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
working-directory: ./AM2RPortHelperTests/
run: dotnet restore
- name: Test
run: dotnet test

Loading…
Cancel
Save