mirror of
https://github.com/eliasstepanik/egui_node_graph.git
synced 2026-01-11 13:58:28 +00:00
22 lines
344 B
YAML
22 lines
344 B
YAML
on: [push]
|
|
|
|
name: CI
|
|
|
|
jobs:
|
|
build_and_test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install
|
|
run: sudo apt install libxcb-composite0-dev
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|