From 4d2cc209418cabd879861d69831c0ca5475c3bea Mon Sep 17 00:00:00 2001 From: Kenzi Connor Date: Tue, 16 Jul 2024 00:20:19 -0700 Subject: [PATCH] install sdl2 first --- .github/workflows/commit.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit.yml b/.github/workflows/commit.yml index d889a28..8c7ece9 100644 --- a/.github/workflows/commit.yml +++ b/.github/workflows/commit.yml @@ -29,6 +29,9 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 + + - name: install_dependencies + run: sudo apt-get install libsdl2-dev - name: Install stable toolchain uses: actions-rs/toolchain@v1 @@ -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 \ No newline at end of file