Skip to content

Commit

Permalink
attempt to add an action
Browse files Browse the repository at this point in the history
  • Loading branch information
majiru committed Feb 18, 2025
1 parent d5b6c0c commit 8fefa6e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: run
on:
workflow_dispatch:

jobs:
basic-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- name: basic
run: |
nix run '.#setup-vm'
response=$(echo 'echo $sysname' | nix run '.#run-vm' -- -nogui)
echo $response
if [ $response != "cirno" ]; then exit 12; fi

0 comments on commit 8fefa6e

Please sign in to comment.