https://github.com/akihirosuda/lima-actions
Will be moved to `lima-vm/lima-actions` later
https://github.com/akihirosuda/lima-actions
Last synced: 7 months ago
JSON representation
Will be moved to `lima-vm/lima-actions` later
- Host: GitHub
- URL: https://github.com/akihirosuda/lima-actions
- Owner: AkihiroSuda
- License: apache-2.0
- Created: 2025-03-06T02:08:41.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-03-06T02:56:38.000Z (7 months ago)
- Last Synced: 2025-03-06T03:27:07.177Z (7 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lima on GitHub Actions
[Lima](https://lima-vm.io) is useful for running non-Ubuntu distributions such as Fedora on GitHub Actions.
## Usage
```yaml
steps:
- uses: actions/checkout@v4- uses: lima-vm/lima-actions/setup@v1
id: lima-actions-setup- uses: actions/cache@v4
with:
path: ~/.cache/lima
key: lima-${{ steps.lima-actions-setup.outputs.version }}- run: limactl start --plain --name=default --cpus=1 --memory=1 template://fedora
- uses: lima-vm/lima-actions/ssh@v1
- run: rsync -a -e ssh . lima-default:/tmp/repo
- run: ssh lima-default ls -l /tmp/repo
```