Skip to content

Commit

Permalink
Added a pr validator
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisgKent committed Sep 13, 2024
1 parent edc6bf3 commit c36146a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Pull Request Validation

on:
pull_request:
branches: [main]

jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install primal-page
- name: Run primal-page validate
run: primal-page validate directory ./primerschemes

0 comments on commit c36146a

Please sign in to comment.