Improve easing functions #743
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: Build and Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: "builds" | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
lfs: true | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
if: matrix.os == 'ubuntu-latest' | |
with: | |
packages: libgl1-mesa-dev libasound2-dev libopenal-dev libsdl2-dev pkg-config | |
version: 1.0 | |
- uses: Swatinem/rust-cache@v1 | |
- run: cargo test --all --all-features |