Skip to content

Commit

Permalink
move data validation to its own action (#3664)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Sep 6, 2024
1 parent 4756b7a commit 2740b4c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci-pr-data.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "[CI] Test PR Data"

on:
pull_request:
paths:
- "src/cfnlint/data/**"

jobs:
data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: |
tox -e py -- -m "data"
13 changes: 0 additions & 13 deletions .github/workflows/ci-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,6 @@ jobs:
with:
name: pr
path: pr/
data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: |
tox -e py -- -m "data"
integration:
runs-on: ${{ matrix.os }}
strategy:
Expand Down

0 comments on commit 2740b4c

Please sign in to comment.