Skip to content

Commit

Permalink
Try to get GitHub Actions working...
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Jul 5, 2024
1 parent 4bbee3e commit f599868
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 38 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,16 @@ jobs:
ruby-version: ${{matrix.ruby}}
bundler-cache: true

- name: Install ollama
run: |
curl -fsSL https://ollama.com/install.sh | sh
sudo systemctl status ollama
ollama pull llama3
- name: Run tests
timeout-minutes: 5
run: bundle exec bake test

- uses: actions/upload-artifact@v3
with:
name: coverage-${{matrix.os}}-${{matrix.ruby}}
Expand Down
36 changes: 0 additions & 36 deletions .github/workflows/test-external.yaml

This file was deleted.

7 changes: 6 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
matrix:
os:
- ubuntu
- macos

ruby:
- "3.1"
Expand All @@ -45,6 +44,12 @@ jobs:
ruby-version: ${{matrix.ruby}}
bundler-cache: true

- name: Install ollama
run: |
curl -fsSL https://ollama.com/install.sh | sh
sudo systemctl status ollama
ollama pull llama3
- name: Run tests
timeout-minutes: 10
run: bundle exec bake test

0 comments on commit f599868

Please sign in to comment.