Skip to content

Commit

Permalink
github actions for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lamg committed Dec 13, 2023
1 parent 970b4b5 commit 8f79c88
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run Solutions

on:
push:
paths:
- 'Lib/**'
- 'Test/**'

jobs:
build:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:8.0

steps:
- uses: actions/checkout@v4

- name: Run tests
run: dotnet test
File renamed without changes.

0 comments on commit 8f79c88

Please sign in to comment.