Skip to content

Bump deps

Bump deps #825

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
name: CI with ${{ matrix.rust }}
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, nightly]
steps:
- run: sudo apt install libfontconfig1-dev libxkbcommon-dev libxcb-keysyms1-dev
- name: Checkout code
uses: actions/checkout@v4
- name: cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --all-features
- name: cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-features -- -D warnings