Skip to content

chore: bump version to 0.1.3 #8

chore: bump version to 0.1.3

chore: bump version to 0.1.3 #8

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
paths-ignore:
- "**/README.md"
pull_request:
paths-ignore:
- "**/README.md"
env:
CARGO_TERM_COLOR: always
jobs:
continuous-integration:
name: cargo ${{ matrix.action.command }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
action:
- command: build
args: --release
- command: test
args: --all-features --workspace
- command: fmt
args: --all -- --check
- command: clippy
args: --all-targets --all-features --workspace -- -D warnings
- command: doc
args: --no-deps --document-private-items --all-features --workspace --examples
- command: publish
args: --dry-run
steps:
- name: Install dependencies
run: |
sudo sed -i 's/azure.archive.ubuntu.com/archive.ubuntu.com/' /etc/apt/sources.list
sudo apt-get update
sudo apt-get install libudev-dev
- name: Checkout repository
uses: actions/checkout@v3
- name: Update Rust toolchain
run: rustup update stable && rustup default stable
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Build
uses: actions-rs/cargo@v1
with:
command: ${{ matrix.action.command }}
args: ${{ matrix.action.args }}