We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f82017d + 7af40ae commit 30eb2c3Copy full SHA for 30eb2c3
1 file changed
.github/workflows/validate-csv.yml
@@ -0,0 +1,35 @@
1
+name: Validate CSV Files
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
+ - master
8
+ push:
9
10
11
12
13
+jobs:
14
+ validate-csv:
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ contents: read
18
19
+ steps:
20
+ - name: Checkout code
21
+ uses: actions/checkout@v4
22
23
+ - name: Set up Python
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: '3.12'
27
28
+ - name: Install dependencies
29
+ run: |
30
+ python -m pip install --upgrade pip
31
+ pip install pytest==9.0.1
32
33
+ - name: Run CSV validation tests
34
35
+ pytest tests/test_csv.py -v
0 commit comments