Skip to content

Commit adc31bc

Browse files
authored
Update test.yml
1 parent b2803e1 commit adc31bc

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

.github/workflows/test.yml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,31 @@
1-
ф
1+
name: Run csv-db-bridge Tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test-python:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: [3.11, 3.12, 3.13]
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
19+
- name: Set up Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: ${{ matrix.python-version }}
23+
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install psycopg2-binary mysql-connector-python pymongo boto3 ibm-db
28+
29+
- name: Run unittests
30+
run: |
31+
python -m unittest discover -s tests -p 'test_*.py'

0 commit comments

Comments
 (0)