Skip to content

very small change to how we invoke texture creation #24

very small change to how we invoke texture creation

very small change to how we invoke texture creation #24

Workflow file for this run

name: CI
on:
push:
branches: [ "main", "miniquad-0.3" ]
pull_request:
branches: [ "main", "miniquad-0.3" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- run: rustup component add rustfmt
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check