Skip to content

Commit

Permalink
install sdl2 first
Browse files Browse the repository at this point in the history
  • Loading branch information
knzai committed Jul 16, 2024
1 parent 9e262aa commit 3398240
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: install_dependencies
run: sudo apt-get install libsdl2-dev libsdl2-gfx-dev libsdl2-image-dev

- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -59,14 +62,12 @@ jobs:

- name: Run cargo fmt
uses: actions-rs/cargo@v1
continue-on-error: true # WARNING: only for this example, remove it!
with:
command: fmt
args: --all -- --check

- name: Run cargo clippy
uses: actions-rs/cargo@v1
continue-on-error: true # WARNING: only for this example, remove it!
with:
command: clippy
args: -- -D warnings

0 comments on commit 3398240

Please sign in to comment.