Skip to content

check if code still compiles #60

check if code still compiles

check if code still compiles #60

Workflow file for this run

# From:
# https://bevy-cheatbook.github.io/setup/bevy-git.html#ci-setup
name: check if code still compiles
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * 5'
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: git submodule update --init --recursive
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install g++ pkg-config libx11-dev libasound2-dev libudev-dev
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Check code
run: cargo update && cargo check --lib --examples