Skip to content

Bump version to 0.4.10 #64

Bump version to 0.4.10

Bump version to 0.4.10 #64

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --check
- name: Build application
uses: actions-rs/cargo@v1
with:
command: build
- name: Run clippy linter
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- --deny warnings
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test