This repository has been archived by the owner on Sep 28, 2023. It is now read-only.
update readme regarding project maintenance status #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: check everything | |
jobs: | |
cargo-checkmate: | |
name: cargo-checkmate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup emsdk | |
uses: mymindstorm/setup-emsdk@v11 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Install wasm32 targets | |
run: rustup target add wasm32-unknown-unknown && rustup target add wasm32-unknown-emscripten | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v1 | |
- name: Install dependencies # for sdl2, glfw and tao respectively | |
run: sudo apt update && sudo apt install --no-install-recommends libsdl2-dev libglfw3-dev # libgtk-3-dev only if tao | |
- name: check.sh | |
run: ./check.sh | |