Skip to content

Bump version (0.2.5 was released from a branch) #31

Bump version (0.2.5 was released from a branch)

Bump version (0.2.5 was released from a branch) #31

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Init Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
default: true
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --all
env:
RUSTFLAGS: "-Ctarget-cpu=skylake"