-
Notifications
You must be signed in to change notification settings - Fork 9
71 lines (56 loc) · 1.41 KB
/
ci_agent.yml
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
name: CI (Agent)
env:
VENV_PATH: "~/.venv-agent"
on:
push:
paths:
- agent/**
- .github/workflows/ci_agent.yml
pull_request:
paths:
- agent/**
- .github/workflows/ci_agent.yml
defaults:
run:
working-directory: agent
jobs:
code_quality:
name: Code Quality
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11.3'
- name: Cache poetry install
uses: actions/cache@v4
with:
path: ~/.local
key: poetry
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: false
virtualenvs-path: ${{ env.VENV_PATH }}
- name: Cache deps
id: cache-deps
uses: actions/cache@v4
with:
path: ${{ env.VENV_PATH }}
key: venv-agent-${{ hashFiles('**/poetry.lock') }}
- name: Install confluent-kafka prerequisites
run: |
sudo apt-get install --yes gcc librdkafka-dev python3-dev
- name: Install dependencies
run: |
poetry install --no-interaction --no-root
- uses: taiki-e/install-action@just
- uses: taiki-e/install-action@dprint
- name: Lint
# currently cli is not-maintained
run: |
just fmt-check
just lint