blob: 809b8cc5139ea8dedf52d7b21514599c9595332c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v2
with:
components: clippy
- uses: actions/checkout@master
- name: Install dependencies
run: |
export DEBIAN_FRONTED=noninteractive
sudo apt-get -qq update
sudo apt-get install -y libxkbcommon-dev
- name: Check lints
run: cargo lint
- name: Run tests
run: |
cargo test --verbose --doc
cargo test --verbose --all-targets
- name: Build example
run: cargo build --example save
|