diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..28bb87a --- /dev/null +++ b/.github/workflows/test.yml @@ -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 \ No newline at end of file diff --git a/SqlParser/README.md b/Lib/SqlParser/README.md similarity index 100% rename from SqlParser/README.md rename to Lib/SqlParser/README.md