Skip to content

Slightly cleaner run_cpu function #78

Slightly cleaner run_cpu function

Slightly cleaner run_cpu function #78

Workflow file for this run

name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: inv8080rs project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: sudo apt update && sudo apt install libsdl2-dev
- run: cargo build --verbose
- run: cargo test --verbose