Check if krunkit process is running with --all-providers #72
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: Install RamaLama | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
install_ramalama: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] # Runs on Ubuntu, macOS, and Fedora | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set Up Dependencies (Ubuntu) | |
timeout-minutes: 10 | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get install -y lshw curl | |
- name: Set Up Dependencies (macOS) | |
if: matrix.os == 'macos-latest' | |
run: | | |
if ! command -v brew &> /dev/null; then | |
echo "Homebrew is required but not found. Please install it." | |
exit 1 | |
fi | |
- name: Run RamaLama Installer | |
run: | | |
chmod +x install.sh | |
sudo ./install.sh -l | |
- name: Ramalama info | |
run: | | |
ramalama info | |
- name: Ramalama info | |
run: | | |
ramalama pull tinyllama |