Revert on the fixed_value on disk not inserted to second drive #615
This file contains hidden or 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: Rust | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Apt Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libatk1.0-dev libgtk-3-dev libgdk-pixbuf-2.0-dev libcairo2-dev libwayland-dev | |
- uses: actions/checkout@v4 | |
- name: Install Rust Nightly | |
run: rustup install nightly | |
- name: Build for Linux | |
run: cargo +nightly build -r --bin emu6502 | |
- name: Run tests | |
run: cargo +nightly test |