mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 06:30:19 +00:00
28 lines
544 B
YAML
28 lines
544 B
YAML
name: Rust
|
|
|
|
on:
|
|
# NOTE: temporarily disabled because on-push currently uses up too many resources
|
|
# push:
|
|
# branches: [master]
|
|
schedule:
|
|
- cron: '0 21 * * *'
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
override: true
|
|
- name: Build
|
|
run: cargo check
|
|
- name: Run tests
|
|
run: cargo test --workspace
|
|
|