Skip to content

Updated emu6502_web #464

Updated emu6502_web

Updated emu6502_web #464

Workflow file for this run

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 libpango1.0-0 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