Install SDL2

This commit is contained in:
Rafael Caricio 2020-06-19 15:09:58 +02:00 committed by Rafael Carício
parent a1aec89456
commit ef94e5d5d4

View file

@ -16,10 +16,15 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Install SDL2
with: run: sudo apt install libsdl2-dev libsdl2-2.0-0
submodules: true
- name: Build - uses: actions/checkout@v2
run: cargo build --verbose with:
- name: Run tests submodules: true
run: cargo test --verbose
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose