skip flipping dy when bouncing off of a paddle in the pong demo. #309
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
name: ci | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: | |
- { toolchain: nightly } | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Apt Dependencies | |
run: sudo apt-get update && sudo apt-get install binutils-arm-none-eabi | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust.toolchain }} | |
default: true | |
- name: Install Rust Source | |
run: rustup component add rust-src | |
- name: Build The Examples | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: ${{ matrix.rust.toolchain }} | |
command: build | |
args: --examples |