-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (46 loc) · 1.16 KB
/
pr_opened.yml
File metadata and controls
56 lines (46 loc) · 1.16 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
name: test and build python package
on:
pull_request:
branches:
- 'main'
- 'master'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v3.3.0
- name: Setup python
uses: actions/setup-python@v4.5.0
with:
python-version: ${{ matrix.python-version }}
- name: Setup virtualenv
run: |
python -V
python -m pip install virtualenv pipdeptree
virtualenv venv
source venv/bin/activate
pip install --upgrade pip
- name: Test pre-commit hooks
run: |
pip install -r ./tests/requirements.txt
pip freeze
pipdeptree
pre-commit run --files flink_sql_runner/* tests/* docker/* example/*
- name: Test with tox
run: |
tox -e py
- name: Run unit tests
run: |
pytest
- name: Build using wheel
id: wheel
run: |
python setup.py sdist
- uses: actions/upload-artifact@v3.1.2
with:
name: package
path: dist/
retention-days: 30