-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (51 loc) · 1.45 KB
/
python-app.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
name: CI/CD
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
make install
- name: Run code formatting check
run: |
make format
- name: Run linting
run: |
make lint
- name: Lint Dockerfiles
run: |
docker run --rm -i hadolint/hadolint < Dockerfile.app
docker run --rm -i hadolint/hadolint < Dockerfile.ollama
docker-build:
needs: build-and-test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build Docker images
env:
AT_USERNAME: ${{ secrets.AT_USERNAME }}
AT_API_KEY: ${{ secrets.AT_API_KEY }}
run: |
make docker_build
- name: Cleanup Docker resources
run: |
docker-compose down --remove-orphans