Implement basic event manipulation operations in the map editor #42
Workflow file for this run
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: CI | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install libraries | |
run: | | |
sudo apt update | |
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly-2023-09-12 | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- run: cargo check --all-features --jobs 1 | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- run: | | |
sudo apt update | |
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly-2023-09-12 | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- run: cargo test --lib --jobs 1 | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install libraries | |
run: | | |
sudo apt update | |
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly-2023-09-12 | |
components: rustfmt | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- run: cargo fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install libraries | |
run: | | |
sudo apt update | |
sudo apt install libgtk-3-dev libatk1.0-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libasound2-dev clang mold -y | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly-2023-09-12 | |
components: clippy | |
- name: Rust Cache | |
uses: Swatinem/rust-cache@v2 | |
- run: cargo clippy --jobs 1 -- # -D warnings |