Refactor workflow action to enable pull request workflow

This commit is contained in:
Djuri 2023-11-30 21:19:50 +01:00
parent 31f44c4997
commit 4ada3334c5
3 changed files with 60 additions and 37 deletions

16
.github/workflows/pull_request.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: Pull Request Workflow
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
checks: write
steps:
- name: "Checkout, install and build"
uses: ./.github/actions/checkout-install-build