mirror of
https://github.com/htrefil/rkvm.git
synced 2024-11-16 07:47:24 +01:00
17 lines
307 B
YAML
17 lines
307 B
YAML
name: Release
|
|
|
|
on: [push]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
ubuntu:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build
|
|
run: sudo apt update && sudo apt -y install libevdev-dev && cargo build --verbose
|
|
- name: Run tests
|
|
run: cargo test --verbose
|