Skip to content

Update crate version to v0.3.0 with Miniquad bump to v0.4.0 in #1, al… #35

Update crate version to v0.3.0 with Miniquad bump to v0.4.0 in #1, al…

Update crate version to v0.3.0 with Miniquad bump to v0.4.0 in #1, al… #35

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