Add build-pr action

This commit is contained in:
Stephan 2021-09-21 17:06:05 +02:00
parent 56c06949e7
commit 0fbb9e6f0c

26
.github/workflows/build-pr.yml vendored Normal file
View File

@ -0,0 +1,26 @@
#
# Workflow: Build PR
#
name: Build PR
on: pull_request
jobs:
# build and test the PR
build-pr:
name: Build PR (...)
strategy:
fail-fast: false
steps:
- name: Step 1
shell: bash
run: echo "step 1 of {{ github.event.pull_request.number }}"
- name: Step 2
shell: bash
run: echo "step 2 of {{ github.event.pull_request.number }}"