mirror of
https://github.com/italicsjenga/winit-sonoma-fix.git
synced 2024-12-25 14:51:30 +11:00
24 lines
437 B
YAML
24 lines
437 B
YAML
version: 2
|
|
|
|
jobs:
|
|
|
|
test:
|
|
working_directory: ~/tgst
|
|
docker:
|
|
- image: tomaka/cargo-apk
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
key: test-cache-{{ checksum "Cargo.toml" }}
|
|
- run: cargo apk build --example window
|
|
- save_cache:
|
|
key: test-cache-{{ checksum "Cargo.toml" }}
|
|
paths:
|
|
- target
|
|
|
|
workflows:
|
|
version: 2
|
|
build-test-and-deploy:
|
|
jobs:
|
|
- test
|