Update python-app.yml #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
#- uses: psf/black@stable | |
- 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_run | |
- name: Cleanup Docker resources | |
run: | | |
docker-compose down --remove-orphans |