name: run floppinux in qemu on: push: branches: - main jobs: run-floppinux-in-qemu: runs-on: archlinux-latest container: image: archlinux:latest steps: - name: download img run: | pacman -Sy wget qemu-system-x86 --noconfirm wget https://cat.fs.tlpteam.ru/floppinux_0.1.0.img - name: run img run: | qemu-system-x86_64 -fda floppinux_0.1.0.img -m 50 -nographic