Skip to content

Fix dependencies conflicts with waynest #20

Fix dependencies conflicts with waynest

Fix dependencies conflicts with waynest #20

Workflow file for this run

name: ci
on: [push, pull_request]
env:
RUSTFLAGS: "-Dwarnings"
jobs:
test:
name: Build and test
runs-on: ubuntu-latest
container: archlinux:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman --noconfirm -Syu && pacman --needed --noconfirm -S \
rustup base-devel libinput
- name: Setup rust
run: rustup toolchain install stable
- name: Install nextest to run tests
uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo nextest run --all-features
- name: Check clippy
run: cargo clippy --all-targets --all-features