Skip to content

Remove wasm target #359

Remove wasm target

Remove wasm target #359

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
env:
RUSTFLAGS: '-D warnings'
steps:
- uses: actions/checkout@v2
- name: Install XCB and GL dependencies
run: |
sudo apt update
# baseview dependencies
sudo apt install libx11-xcb-dev libxcb-dri2-0-dev libgl1-mesa-dev libxcb-icccm4-dev libxcursor-dev libxcb-{render,shape,xfixes}0-dev
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check Format
run: cargo fmt -- --check
- name: Check Clippy
run: cargo clippy