diff --git a/.github/workflows/build_client.yml b/.github/workflows/build_client.yml new file mode 100644 index 0000000..00a74f2 --- /dev/null +++ b/.github/workflows/build_client.yml @@ -0,0 +1,20 @@ +name: RemoConMouse Client Build +on: + push: + branches: + - main + +jobs: + build-client: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + + - name: Change directory + run: cd src/client/RemoConMouse + + - name: Setup JDK 19 + uses: actions/setup-java@v3 + with: + java-version: '19' + distribution: 'zulu' diff --git a/.github/workflows/build_server.yml b/.github/workflows/build_server.yml new file mode 100644 index 0000000..eb9220b --- /dev/null +++ b/.github/workflows/build_server.yml @@ -0,0 +1,19 @@ +name: RemoConMouse Server Build +on: + push: + branches: + - main + +jobs: + build-server: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + + - name: Change directory + run: cd src/server/RemoConMouse + + - name: Setup .Net + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 8.0.202