Add build-pr action
This commit is contained in:
parent
56c06949e7
commit
0fbb9e6f0c
26
.github/workflows/build-pr.yml
vendored
Normal file
26
.github/workflows/build-pr.yml
vendored
Normal 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 }}"
|
Loading…
Reference in New Issue
Block a user