Added new github action to find compile errors on commits to main

This commit is contained in:
Marcel Baumgartner 2023-05-22 09:39:26 +02:00
parent 02cf5e99e5
commit 718342d532

22
.github/workflows/test-docker-build.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Test Build
on:
push:
branches:
- main
pull_request:
types:
- closed
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build Docker image
run: docker build -t moonlightpanel/moonlight:${{ github.sha }} -f Moonlight/Dockerfile .