Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

0.8.0

0.8.0 #82

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
steps:
- name: Download deps
run: sudo apt-get update && sudo apt-get install -y libpango1.0-dev libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev
- uses: actions/checkout@v2
- name: install stable
run: rustup toolchain install stable --component rustfmt,clippy --allow-downgrade
- name: Build
run: cargo +stable build --verbose
- name: Run clippy
run: cargo +stable clippy --verbose
- name: Run tests
run: cargo +stable test --verbose