Skip to content

Commit

Permalink
Merge branch 'verdiwm:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
pterror authored Sep 30, 2024
2 parents 7c23199 + 511db39 commit 9ca336c
Show file tree
Hide file tree
Showing 17 changed files with 205 additions and 230 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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
Loading

0 comments on commit 9ca336c

Please sign in to comment.