forked from petercable/grpc_requests
-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (34 loc) · 1.02 KB
/
package.yaml
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
name: Upload Python Package
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -e .
- name: Lint and check formatting with ruff
run: |
ruff check src/grpc_requests/*.py src/tests/*.py --statistics --config ruff.toml
ruff format src/grpc_requests/*.py src/tests/*.py --check --config ruff.toml
- name: Test with pytest
run: |
pytest --cov-report=xml --cov=src/grpc_requests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
- name: Build
run: |
python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/[email protected]