Skip to content

♻ update deps

♻ update deps #80

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- 'LICENSE'
- '*.md'
- '*.sh'
branches:
- master
pull_request:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: CI
runs-on: ubuntu-latest
container:
image: archlinux
steps:
- name: Install Packages
run: pacman -Syu clang gcc pciutils --noconfirm --needed
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: build
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check