Skip to content

test

test #466

Workflow file for this run

name: Rust
on:
push:
branches: [ master, feature/all_targets_ci ]
pull_request:
branches: [ master, feature/*, fix/* ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test-all-targets:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
cache-directories: /home/runner/.cargo/bin
- name: install cargo make
run: cargo install cargo-make
- name: Run tests
run: cargo make test
- name: Build sdl
run: cargo make sdl
- name: Build libretro
run: cargo make libretro_desktop
- name: rpi os
run: cargo make rpios
- name: rpi baremetal
run: cargo make rpibm