[Minor] Adds VGA support and jumps corectly to 64 bit operating #23
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: Tests | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install additional dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y nasm grub-pc-bin grub-common make mtools xorriso | |
rustup update nightly | |
rustup target add x86_64-unknown-none --toolchain nightly | |
- name: Run Tests | |
run: make test |