playground tests #46
Workflow file for this run
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: playground | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository_owner }}/playground | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
services: | |
registry: | |
image: registry:2.8.3 | |
ports: | |
- 5000:5000 | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Login to ghcr | |
uses: docker/login-action@v3.1.0 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Buildah Action | |
uses: redhat-actions/buildah-build@v2.13 | |
with: | |
image: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: latest | |
containerfiles: ./playground/Containerfile | |
context: playground | |
- name: Set up Python | |
uses: actions/setup-python@v5.0.0 | |
- name: Install python modules | |
run: pip install -r playground/tests/requirements.txt | |
- name: Download model | |
run: wget -P locallm/models https://huggingface.co/TheBloke/Llama-2-7B-Chat-GGUF/resolve/main/llama-2-7b-chat.Q5_K_S.gguf | |
- name: Run tests | |
run: pytest |