Skip to content

Commit

Permalink
Improve github CI (#36)
Browse files Browse the repository at this point in the history
* Improve github CI

* Fmt needs to go after shaders are generated...

* Try again

* Missing dep

* Dont use all features on wasm
  • Loading branch information
ArthurBrussee authored Nov 15, 2024
1 parent 37f0a72 commit 08dd291
Showing 1 changed file with 20 additions and 26 deletions.
46 changes: 20 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,42 @@
name: Rust CI

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install deps
run: |
sudo apt-get update
sudo apt-get install -y libatk1.0-dev libgtk-3-dev
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy

- name: Build
run: cargo build --verbose

- name: Cache dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Run tests
run: cargo test --verbose

key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ matrix.target }}
restore-keys: |
${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libatk1.0-dev libgtk-3-dev build-essential
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: wasm32-unknown-unknown, aarch64-linux-android
components: rustfmt, clippy
- name: Build and run checks
run: |
cargo build --all-features --verbose
cargo build --target wasm32-unknown-unknown --verbose
cargo clippy --all-targets --all-features -- -D warnings
cargo test --all-features --verbose
- name: Check formatting
run: cargo fmt -- --check

- name: Clippy
run: cargo clippy -- -D warnings

0 comments on commit 08dd291

Please sign in to comment.