empty commit #5
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: lint | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
ollama: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install Ollama | |
run: | | |
curl -fsSL https://ollama.com/install.sh | sudo -E sh | |
- name: Make ollama models directory | |
run: | | |
sudo mkdir -p ~/.ollama/models | |
sudo chown -R ollama:ollama ~/.ollama | |
sudo chmod -R 775 ~/.ollama | |
- name: Cache Ollama models | |
id: cache-ollama-models | |
uses: actions/cache@v4 | |
with: | |
path: ~/.ollama/models | |
key: ${{ runner.os }}-ollama-models | |
- name: Start serving | |
env: | |
OLLAMA_MODELS: ~/.ollama/models | |
run: | | |
ollama serve & | |
sleep 5 | |
time curl -i http://localhost:11434 | |
- name: Pull gemma2:2b | |
env: | |
OLLAMA_MODELS: ~/.ollama/models | |
run: | | |
ollama pull gemma2:2b | |
- name: Invoke gemma2:2b | |
env: | |
OLLAMA_MODELS: ~/.ollama/models | |
run: | | |
ollama run gemma2:2b "Who is the current Secretary General of the United Nations?" |