Skip to content

Commit 1998f34

Browse files
authored
Create main.yml
1 parent 1b2cb57 commit 1998f34

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/main.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Validate CSV
2+
on: [push]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v2
9+
- name: Set up Python
10+
uses: actions/setup-python@v2
11+
with:
12+
python-version: '3.x'
13+
- name: Install dependencies
14+
run: |
15+
python -m pip install --upgrade pip
16+
pip install pandas
17+
- name: Validate CSV
18+
run: |
19+
python .github/actions/validate.py

0 commit comments

Comments
 (0)