Skip to content

Bump version

Bump version #29

Workflow file for this run

name: Rust
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: clippy
- name: Checkout Sources
uses: actions/checkout@v2
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Lints
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- name: Build & Test Project
run: |
./run_examples.sh
cargo test