Skip to content

Commit

Permalink
try run-on macos-14
Browse files Browse the repository at this point in the history
  • Loading branch information
Grégoire Henry committed Nov 14, 2023
1 parent 18ac7d6 commit f6d7472
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- '**'

jobs:
check:
check-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -26,5 +26,20 @@ jobs:
- name: Install SDL2
run: sudo apt install -y libsdl2-dev

- name: Check that code can compile
run: cargo check

check-macos:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable

- name: Install SDL2
run: brew install SDL2

- name: Check that code can compile
run: cargo check

0 comments on commit f6d7472

Please sign in to comment.