Skip to content

Commit

Permalink
Allow contributors to test their forks
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Dec 26, 2024
1 parent cb0daa1 commit 274cd57
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
name: Format CSVs
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
Expand All @@ -13,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.x"
- run: pip install -r linters/requirements.txt
- run: python linters/format.py
- run: python linters/validate.py
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
---
name: Validate CSVs
on:
push:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.x"
- run: pip install -r linters/requirements.txt
- run: python linters/validate.py

0 comments on commit 274cd57

Please sign in to comment.