mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-06-30 02:58:36 -06:00
12 lines
228 B
YAML
12 lines
228 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: rust
|
|
steps:
|
|
- run: apt -y update --fix-missing
|
|
- run: apt -y install libgc-dev
|
|
- checkout
|
|
- run: cargo build
|
|
- run: cd examples && ./test.sh
|