Skip to content

Bump version to 0.1.3 #20

Bump version to 0.1.3

Bump version to 0.1.3 #20

Workflow file for this run

on: [push, pull_request]
name: Continuous Integration
jobs:
check:
name: Check
runs-on: windows-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
lints:
name: Lints
runs-on: windows-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings