Skip to content

Commit 56bcbc2

Browse files
ericktjoshuagl
authored andcommitted
GHA: run check_release on PR
Run our check_release script on each PR to the specification Signed-off-by: Joshua Lock <[email protected]>
1 parent f9fd90a commit 56bcbc2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pr.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
on:
3+
pull_request: {}
4+
5+
jobs:
6+
main:
7+
name: Build, Validate and Deploy
8+
runs-on: ubuntu-20.04
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 0 # we want all refs for the --is-ancestor check
13+
- name: Set up Python
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: 3.x
17+
- name: Check date and version
18+
run: python check_release.py

0 commit comments

Comments
 (0)