Skip to content

Bump eyre from 0.6.11 to 0.6.12 #56

Bump eyre from 0.6.11 to 0.6.12

Bump eyre from 0.6.11 to 0.6.12 #56

Workflow file for this run

name: build
on:
- pull_request
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v1
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install dependencies
run: |
sudo apt-get install \
libdbus-1-dev \
libudev-dev
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
toolchain: stable
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
toolchain: stable
args: -- -D warnings
test:
name: Run tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout sources
uses: actions/checkout@v1
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install \
libdbus-1-dev \
libudev-dev
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all
env:
CLICOLOR_FORCE: 1