mirror of
https://github.com/henryksloan/kind-nes.git
synced 2025-04-02 10:31:47 -04:00
25 lines
457 B
YAML
25 lines
457 B
YAML
name: Rust
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install SDL2
|
|
run: |
|
|
sudo sed -i 's/azure\.//' /etc/apt/sources.list
|
|
sudo apt-get update
|
|
sudo apt-get install libsdl2-dev
|
|
- name: Run tests
|
|
run: cargo test --workspace --exclude windows-ui --verbose
|