Skip to content

Commit de11ea8

Browse files
committed
Add GitHub Actions workflow
1 parent 1d6db25 commit de11ea8

File tree

2 files changed

+400
-239
lines changed

2 files changed

+400
-239
lines changed

.github/workflows/tests.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI Pipeline
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: '3.12'
17+
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install pytest sqlalchemy pandas openpyxl
22+
23+
- name: Run tests
24+
run: |
25+
pytest tests/

0 commit comments

Comments
 (0)