-
Notifications
You must be signed in to change notification settings - Fork 8
87 lines (71 loc) · 1.92 KB
/
test_sqllex.yml
File metadata and controls
87 lines (71 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# This workflow run tests for sqllex.SQLite3x class
name: Test Sqllex
on:
push:
branches:
- main
- dev
- 'dev/**'
pull_request:
# The branches below must be a subset of the branches above
branches:
- main
- dev
- 'dev/**'
schedule:
- cron: '0 15 * * 5'
jobs:
python-3-10:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Update pip, Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Moving tests to current dir
run: |
mv ./tests/* ./
- name: Running unit tests (tests/test_sqllex.py)
run: |
python -m unittest test_sqllex.py
python-3-9:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python3.9
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Update pip, Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Moving tests to current dir
run: |
mv ./tests/* ./
- name: Running unit tests (tests/test_sqllex.py)
run: |
python -m unittest test_sqllex.py
python-3-8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python3.8
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Update pip, Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Moving tests to current dir
run: |
mv ./tests/* ./
- name: Running unit tests (tests/test_sqllex.py)
run: |
python -m unittest test_sqllex.py