Refactor workflow action to enable pull request workflow
This commit is contained in:
parent
31f44c4997
commit
4ada3334c5
3 changed files with 60 additions and 37 deletions
16
.github/workflows/pull_request.yml
vendored
Normal file
16
.github/workflows/pull_request.yml
vendored
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue