Add GitHub Actions workflow to validate pull requests

This commit is contained in:
riQQ 2022-01-14 23:48:32 +01:00 committed by GitHub
parent a65afbbb58
commit 7a069a8412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
.github/workflows/validate-pr.yml vendored Normal file
View file

@ -0,0 +1,12 @@
name: Build and validate PR
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup and validate themes
uses: ./.github/actions/setup-and-validate