Skip to content

Bump vernum again

Bump vernum again #14

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux
steps:
- name: Install packages
run: |
pacman -Syu rust pacman-contrib pkgconf libxkbcommon git just lld --noconfirm --needed
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: |
cargo test --verbose --bins --lib
cargo test --verbose --doc